How To Install libtrilinos-kokkos-kernels-dev on Kali Linux
Introduction
In this tutorial we learn how to install libtrilinos-kokkos-kernels-dev
on Kali Linux.
What is libtrilinos-kokkos-kernels-dev
libtrilinos-kokkos-kernels-dev is:
KokkosKernels implements local computational kernels for linear algebra and graph operations, using the Kokkos shared-memory parallel programming model. “Local” means not using MPI, or running within a single MPI process without knowing about MPI. “Computational kernels” are coarse-grained operations; they take a lot of work and make sense to parallelize inside using Kokkos. KokkosKernels can be the building block of a parallel linear algebra library like Tpetra that uses MPI and threads for parallelism, or it can be used stand-alone in your application.
This package provides headers.
There are three methods to install libtrilinos-kokkos-kernels-dev
on Kali Linux. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install libtrilinos-kokkos-kernels-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 libtrilinos-kokkos-kernels-dev
using apt-get
by running the following command:
sudo apt-get -y install libtrilinos-kokkos-kernels-dev
Install libtrilinos-kokkos-kernels-dev Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install libtrilinos-kokkos-kernels-dev
using apt
by running the following command:
sudo apt -y install libtrilinos-kokkos-kernels-dev
Install libtrilinos-kokkos-kernels-dev Using aptitude
If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install libtrilinos-kokkos-kernels-dev
using aptitude
by running the following command:
sudo aptitude -y install libtrilinos-kokkos-kernels-dev
How To Uninstall libtrilinos-kokkos-kernels-dev on Kali Linux
To uninstall only the libtrilinos-kokkos-kernels-dev
package we can use the following command:
sudo apt-get remove libtrilinos-kokkos-kernels-dev
Uninstall libtrilinos-kokkos-kernels-dev And Its Dependencies
To uninstall libtrilinos-kokkos-kernels-dev
and its dependencies that are no longer needed by Kali Linux, we can use the command below:
sudo apt-get -y autoremove libtrilinos-kokkos-kernels-dev
Remove libtrilinos-kokkos-kernels-dev Configurations and Data
To remove libtrilinos-kokkos-kernels-dev
configuration and data from Kali Linux we can use the following command:
sudo apt-get -y purge libtrilinos-kokkos-kernels-dev
Remove libtrilinos-kokkos-kernels-dev configuration, data, and all of its dependencies
We can use the following command to remove libtrilinos-kokkos-kernels-dev
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge libtrilinos-kokkos-kernels-dev
Dependencies
libtrilinos-kokkos-kernels-dev have the following dependencies:
References
Summary
In this tutorial we learn how to install libtrilinos-kokkos-kernels-dev
package on Kali Linux using different package management tools: apt
, apt-get
and aptitude
.