How To Install intel-vc-intrinsics-dev on Ubuntu 22.04

In this tutorial we learn how to install intel-vc-intrinsics-dev on Ubuntu 22.04. intel-vc-intrinsics-dev is Intel Vector Compute Intrinsics – development files

Introduction

In this tutorial we learn how to install intel-vc-intrinsics-dev on Ubuntu 22.04.

What is intel-vc-intrinsics-dev

intel-vc-intrinsics-dev is:

Vector Compute Intrinsics project contains a set of new intrinsics on top of core LLVM IR instructions that represent SIMD semantics of a program targeting GPU.

There are three methods to install intel-vc-intrinsics-dev on Ubuntu 22.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install intel-vc-intrinsics-dev Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install intel-vc-intrinsics-dev using apt-get by running the following command:

sudo apt-get -y install intel-vc-intrinsics-dev

Install intel-vc-intrinsics-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install intel-vc-intrinsics-dev using apt by running the following command:

sudo apt -y install intel-vc-intrinsics-dev

Install intel-vc-intrinsics-dev Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install intel-vc-intrinsics-dev using aptitude by running the following command:

sudo aptitude -y install intel-vc-intrinsics-dev

How To Uninstall intel-vc-intrinsics-dev on Ubuntu 22.04

To uninstall only the intel-vc-intrinsics-dev package we can use the following command:

sudo apt-get remove intel-vc-intrinsics-dev

Uninstall intel-vc-intrinsics-dev And Its Dependencies

To uninstall intel-vc-intrinsics-dev and its dependencies that are no longer needed by Ubuntu 22.04, we can use the command below:

sudo apt-get -y autoremove intel-vc-intrinsics-dev

Remove intel-vc-intrinsics-dev Configurations and Data

To remove intel-vc-intrinsics-dev configuration and data from Ubuntu 22.04 we can use the following command:

sudo apt-get -y purge intel-vc-intrinsics-dev

Remove intel-vc-intrinsics-dev configuration, data, and all of its dependencies

We can use the following command to remove intel-vc-intrinsics-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge intel-vc-intrinsics-dev

References

Summary

In this tutorial we learn how to install intel-vc-intrinsics-dev package on Ubuntu 22.04 using different package management tools: apt, apt-get and aptitude.