Skip To Main Content
Intel logo - Return to the home page
My Tools

Select Your Language

  • Bahasa Indonesia
  • Deutsch
  • English
  • Español
  • Français
  • Português
  • Tiếng Việt
  • ไทย
  • 한국어
  • 日本語
  • 简体中文
  • 繁體中文
Sign In to access restricted content

Using Intel.com Search

You can easily search the entire Intel.com site in several ways.

  • Brand Name: Core i9
  • Document Number: 123456
  • Code Name: Emerald Rapids
  • Special Operators: “Ice Lake”, Ice AND Lake, Ice OR Lake, Ice*

Quick Links

You can also try the quick links below to see results for most popular searches.

  • Product Information
  • Support
  • Drivers & Software

Recent Searches

Sign In to access restricted content

Advanced Search

Only search in

Sign in to access restricted content.

The browser version you are using is not recommended for this site.
Please consider upgrading to the latest version of your browser by clicking one of the following links.

  • Safari
  • Chrome
  • Edge
  • Firefox

Get Intel® oneAPI DPC++/C++ Compiler

 

 

  • Overview
  • Download
  • Documentation & Resources
This site is protected by reCAPTCHA and the Google <a href="https://policies.google.com/privacy">Privacy Policy</a> and <a href="https://policies.google.com/terms"> Terms of Service</a> apply.

Create performance-optimized application code that takes advantage of more cores and built-in technologies in platforms based on Intel® processors. The compilers are part of the Intel® oneAPI Base Toolkit and the Intel® oneAPI HPC Toolkit. The Intel® oneAPI DPC++/C++ Compiler does not support macOS.

For the most current functional and security features, update to the latest version as it becomes available.

The Intel oneAPI DPC++ Compiler is available from pip package manager as a runtime package only. if you require the full compiler, please select an Online or Offline version.

Set Up Your Environment

  1. Install Miniforge.
  2. Create and activate a new conda environment, replacing <your-env-name> with your preferred name for the environment:
     
    conda create -n <your-env-name>
    conda activate <your-env-name>
    

Install with conda

conda install -c https://software.repos.intel.com/python/conda/ -c conda-forge <package-name>


The following packages are available for installation:

  • For executing applications written in DPC++ or C++ after they are compiled:
    • dpcpp-cpp-rt includes the DPC++ and C++ runtime libraries
  • For compiling DPC++ and C++ applications:
    • dpcpp_win-64 includes the compiler itself
  • For executing SYCL-based applications, which are built using the DPC++ Compiler:
    • intel-sycl-rt provides the runtime support for SYCL

For the next steps, see the Get Started Guide.

Set Up Your Environment

Create and activate a virtual environment, replacing with your preferred name for the environment:
 

python3.10 -m venv <your-env-name>
source <your-env-name>/bin/activate

Install with pip

pip install <package-name>


The following packages are available for installation:

  • For executing applications written in DPC++ or C++ after they are compiled:
    • dpcpp-cpp-rt includes the DPC++ and C++ runtime libraries
  • For executing SYCL-based applications, which are built using the DPC++ Compiler:
    • intel-sycl-rt provides the runtime support for SYCL

For the next steps, see the Get Started Guide.

   Prerequisites for First-Time Users

 

  1. To add APT repository access, install the prerequisites:
     
    
    sudo apt install -y gpg-agent wget
    
  2. Set up the repository. To do this, download the key to the system keyring:
     
    
    wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
    
  3. Add the signed entry to APT sources and configure the APT client to use the Intel repository:
     

    
    echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
    
  4. Update the packages list and repository index.

    
    sudo apt update
    

 

Install with APT

sudo apt install intel-oneapi-compiler-dpcpp-cpp


For the next steps, see the Get Started Guide.

Set Up Your Environment

  1. Install Miniforge.
  2. Create and activate a new conda environment, replacing <your-env-name> with your preferred name for the environment:
     
    conda create -n <your-env-name>
    conda activate <your-env-name>
    

Install with conda

conda install -c https://software.repos.intel.com/python/conda/ -c conda-forge <package-name>


The following packages are available for installation:

  • For executing applications written in DPC++ or C++ after they are compiled:
    • dpcpp-cpp-rt includes the DPC++ and C++ runtime libraries
  • For compiling DPC++ and C++ applications:
    • dpcpp_linux-64 includes the compiler itself
  • For executing SYCL-based applications, which are built using the DPC++ Compiler:
    • intel-sycl-rt provides the runtime support for SYCL

For the next steps, see the Get Started Guide.

   Prerequisite for First-Time Users

 

  1. Create the DNF repository file in the /temp directory as a normal user.
     

    
    tee > /tmp/oneAPI.repo << EOF
    [oneAPI]
    name=Intel® oneAPI repository
    baseurl=https://yum.repos.intel.com/oneapi
    enabled=1
    gpgcheck=1
    repo_gpgcheck=1
    gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
    EOF
    
  2. Move the newly created oneAPI.repo file to the YUM configuration directory.
     

    
    sudo mv /tmp/oneAPI.repo /etc/yum.repos.d
    

Install with DNF

sudo dnf install intel-oneapi-compiler-dpcpp-cpp


For the next steps, see the Get Started Guide.

Set Up Your Environment

Create and activate a virtual environment, replacing with your preferred name for the environment:

python3.10 -m venv <your-env-name>
source <your-env-name>/bin/activate

Install with pip

pip install <package-name>


The following packages are available for installation:

  • For executing applications written in DPC++ or C++ after they are compiled:
    • dpcpp-cpp-rt includes the DPC++ and C++ runtime libraries
  • For executing SYCL-based applications, which are built using the DPC++ Compiler:
    • intel-sycl-rt provides the runtime support for SYCL

For the next steps, see the Get Started Guide.

Install with Spack

spack install intel-oneapi-compilers


For more information, refer to Spack documentation.

For the next steps, see the Get Started Guide.

  Prerequisites for First-Time Users

 ​​​​​​

  1. Create the YUM repository file in the /temp directory as a normal user.
     
    
    tee > /tmp/oneAPI.repo << EOF
    [oneAPI]
    name=Intel® oneAPI repository
    baseurl=https://yum.repos.intel.com/oneapi
    enabled=1
    gpgcheck=1
    repo_gpgcheck=1
    gpgkey=https://yum.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
    EOF
    
  2. Move the newly created oneAPI.repo file to the YUM configuration directory /etc/yum.repos.d:
     
    
    sudo mv /tmp/oneAPI.repo /etc/yum.repos.d
    

Install with YUM

sudo yum install intel-oneapi-compiler-dpcpp-cpp


For the next steps, see the Get Started Guide.

Prerequisites for First-Time Users

Add the Intel oneAPI repository public key using the following command:
 

sudo zypper addrepo https://yum.repos.intel.com/oneapi oneAPI

Install with Zypper

sudo zypper install intel-oneapi-compiler-dpcpp-cpp


For the next steps, see the Get Started Guide.

Download

Register your product to receive update notifications plus hand-curated technical articles, tutorials, and training opportunities to help you optimize your code.

Size
Version
Date
SHA384

Service Currently Unavailable. Please Try Again Later
Yes, I would like to subscribe to stay connected to the latest Intel technologies and industry trends by email and telephone. I can unsubscribe at any time.
Intel strives to provide you with a great, personalized experience, and your data helps us to accomplish this.
I consent to Intel collecting and using my personal information as described below.
I agree to Intel's transfer of my personal information outside of China for processing in accordance with Intel’s Privacy and Cookie Statement and Intel's Privacy Policy Supplement for Chinese Users.
Continue as a Guest (download starts immediately) →
By submitting this form, you are confirming you are an adult 18 years or older and you agree to share your personal information with Intel to use for this business request. You also agree to subscribe to stay connected to the latest Intel technologies and industry trends by email and telephone. You may unsubscribe at any time. Intel’s web sites and communications are subject to our Privacy Notice and Terms of Use.
By submitting this form, you are confirming you are an adult 18 years or older and you agree to share your personal information with Intel to use for this business request. Intel’s web sites and communications are subject to our Privacy Notice and Terms of Use.
By downloading, you agree to our Privacy and Terms of use

Thank You

Your Download should start immediately.

Failed to submit your form.

Due to a technical difficulty, we were unable to submit the form. Please try again after a few minutes. We apologize for the inconvenience.

Thank you for signing up!

Register

Register your product to receive updates plus hand-curated technical articles, tutorials, and training opportunities to help optimize your code.

Yes, I would like to subscribe to stay connected to the latest Intel technologies and industry trends by email and telephone. I can unsubscribe at any time.
Intel strives to provide you with a great, personalized experience, and your data helps us to accomplish this.
I consent to Intel collecting and using my personal information as described below.
I agree to Intel's transfer of my personal information outside of China for processing in accordance with Intel’s Privacy and Cookie Statement and Intel's Privacy Policy Supplement for Chinese Users.
By submitting this form, you are confirming you are an adult 18 years or older and you agree to share your personal information with Intel to use for this business request. You also agree to subscribe to stay connected to the latest Intel technologies and industry trends by email and telephone. You may unsubscribe at any time. Intel’s web sites and communications are subject to our Privacy Notice and Terms of Use.
By submitting this form, you are confirming you are an adult 18 years or older and you agree to share your personal information with Intel to use for this business request. Intel’s web sites and communications are subject to our Privacy Notice and Terms of Use.

Windows* Installation Instructions

For more information, see the Get Started Guide.

Linux* Installation Instructions

For more information, see the Get Started Guide.

Additional Resources

System Requirements
Complete Installation Guide
Release Notes

  • Company Overview
  • Contact Intel
  • Newsroom
  • Investors
  • Careers
  • Corporate Responsibility
  • Inclusion
  • Public Policy
  • © Intel Corporation
  • Terms of Use
  • *Trademarks
  • Cookies
  • Privacy
  • Supply Chain Transparency
  • Site Map
  • Recycling
  • Your Privacy Choices California Consumer Privacy Act (CCPA) Opt-Out Icon
  • Notice at Collection

Intel technologies may require enabled hardware, software or service activation. // No product or component can be absolutely secure. // Your costs and results may vary. // Performance varies by use, configuration, and other factors. Learn more at intel.com/performanceindex. // See our complete legal Notices and Disclaimers. // Intel is committed to respecting human rights and avoiding causing or contributing to adverse impacts on human rights. See Intel’s Global Human Rights Principles. Intel’s products and software are intended only to be used in applications that do not cause or contribute to adverse impacts on human rights.

Intel Footer Logo