intel vtune 介绍

https://software.intel.com/en-us/vtune

intel vtune 安装包下载地址

https://software.intel.com/en-us/vtune/choose-download

intel® VTune™ Amplifier 2019 安装手册 - Linux* OS:

https://software.intel.com/sites/default/files/VTune%20Amplifier%202019.5%20Install%20Guide%20for%20Linux.pdf

intel® VTune™ Amplifier 用户使用手册

https://software.intel.com/en-us/vtune-amplifier-help-introduction

安装步骤:

Intel VTune Amplifier在Linux环境下的安装:
$tar zxvf vtune_amplifie_2018_update3.tar.gz 
$cd vtune_amplifie_2018_update3
$install.sh

接下来就是傻瓜式操作了,如果是在线安装,需要Serial Number,如果是离线安装,则需要一份.lic文件。对于试用版,Serial Number和.lic文件是比较容易获取的。
在后续的安装过程中遇到一个问题,即

Missing critical prerequisite
-- Xorg X11 server is not found. 'Graphical user interface' component(s) cannot 
be installed.

这个应该是图形用户界面所需要的,所以我们可以暂停安装VTune,先安装Xorg X11 server

VNC Server在Linux环境下的安装在下一节中说明。

说明:安装需要root身份。

VNC Server常用的三个命令是:

$ps -ef | grep -i xvnc

$vncserver -kill :1

$vncserver :1

接下来,就可以使用安装在Windows上的VNC客户端连接VNC Server了,然后打开VTune应用

可执行文件为/opt/intel/vtune_amplifier/bin64/amplxe-gui

调分辨率:xrandr -s 1920x1200

注意这个命令并非是在SecureCRT上的终端上执行的,而是在VNC Viewer上的终端上执行的。

在Linux下安装vnc-server

用处:远程可以通过客户端的方式访问linux服务器

1.检查是否安装了VNC server

rpm -qa | grep vnc

2.没有安装那么通过yum安装【Redhat不能使用Yum已经解决】

yum install tigervnc tigervnc-server

3.安装完毕,第一次启动需要输入两次密码

vncserver

4.我们可以选择关闭防火墙或者将VNC添加进去防火墙信任列表

关闭防火墙:service iptables stop

Tip:打开防火墙service iptables start

查看状态:service iptables status

重新打开防火墙:service iptables restart

添加到信任用表:修改iptables

/etc/sysconfig/iptables

在-A INPUT -j REJECT --reject-with icmp-host-prohibited之前添加

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5900:5903 -j ACCEPT
 
5.设置开启启动

安装成功

修改密码:

vncpasswd

停止服务

vncserver -kill :1

使用 vtune

To get started using Intel VTune Amplifier 2019 Update 5:

  • To set your environment variables:

    • csh/tcsh users: source
      /opt/intel/vtune_amplifier_2019.5.0.601413/amplxe-vars.csh
    • bash users: source
      /opt/intel/vtune_amplifier_2019.5.0.601413/amplxe-vars.sh
  • To start the graphical user interface: amplxe-gui
  • To use the command-line interface: amplxe-cl
  • For additional product configuration instructions, see the
    post-installation steps in the Intel VTune Amplifier
    Installation Guide:
    /opt/intel/vtune_amplifier_2019.5.0.601413/documentation/en/
  • For more getting started resources:
    /opt/intel/vtune_amplifier_2019.5.0.601413/documentation/en/welcomepage/get_star
    ted.htm

To view movies and additional training, visit
http://www.intel.com/software/products

https://blog.csdn.net/WY_stutdy/article/details/79106501

ref:
https://blog.csdn.net/xin917480852/article/details/78143210
https://blog.csdn.net/Pearson9/article/details/81506444
https://blog.csdn.net/WY_stutdy/article/details/79106501

intel vtune 介绍、安装和使用的更多相关文章

  1. Intel VTune Amplifier XE 使用

    VTune <VTune 开发者手册> 1. 安装 1.1 软件安装 下载: (安装包下载地址) 安装: # 1.解压 tar -zxvf filename.tar.gz # 2.安装 c ...

  2. intel ipp6.0安装过程

    由于最近看到一个代码中使用了intel ipp6.0库,了解到,ipp6.0是一个很强大的图像处理库,将其与opencv联合使用,还能够加速opencv的处理,在图像处理的过程中,是一个很重要的工具. ...

  3. Linux下用Intel编译器编译安装NetCDF-Fortan库(4.2以后版本)

    本来这个问题真的没必要写的,可是真的困扰我太久%>_<%,决定还是记录一下. 首先,最权威清晰的安装文档还是官方的: Building the NetCDF-4.2 and later F ...

  4. webpack 介绍 & 安装 & 常用命令

    webpack 介绍 & 安装 & 常用命令 webpack系列目录 webpack 系列 一:模块系统的演进 webpack 系列 二:webpack 介绍&安装 webpa ...

  5. [Redis_1] Redis 介绍 && 安装

    0. 说明 Redis 介绍 && 安装 1. Redis 介绍 2. Redis 安装(Windows 10) [2.1 解压 redis-2.2.2-win32-win64.rar ...

  6. 【性能分析】使用Intel VTune Amplifier

    本文转自 https://software.intel.com/zh-cn/blogs/2010/11/10/amplxe-cl/版权归原作者所有,如原作者有任何不允许转载之理由,本文将自行删除. I ...

  7. Rancher介绍安装以及对docker的管理

    原文:Rancher介绍安装以及对docker的管理 一.简介 Rancher是一个开源的企业级全栈化容器部署及管理平台.Rancher为容器提供一揽子基础架构服务:CNI兼容的网络服务.存储服务.主 ...

  8. MongoDB的介绍安装与基本使用

    MongoDB的介绍安装 关于MongoDB的介绍于安装可参考:https://www.cnblogs.com/DragonFire/p/9135630.html 除了官网下载,可以下载他人下载好分享 ...

  9. 如何使用Intel vtune profilier?

    如何使用Intel vtune profilier?

随机推荐

  1. Leetcode 16. 3Sum Closest(指针搜索)

    16. 3Sum Closest Medium 131696FavoriteShare Given an array nums of n integers and an integer target, ...

  2. 前端入门——day1(简介及推荐书籍和网站)

    写给谁 这篇文章写给想要入门前端或者刚入门前端的小白~如果是已经工作好几年的小伙伴们可以直接跳过这一系列文章啦. 为啥写这篇文章 终于决定给自己挖这个坑了,之前一直没打算写这样的系列文章.回想起自己的 ...

  3. 手机H5设计尺寸

    手机型号 导航栏和状态栏的高度 宽度 高度 可视区域高度 iPhone 4 (4, 4S) 64px 320px 480px 416px iPhone 5 (5c, 5s) 64px 320px 56 ...

  4. Fabric基础架构原理(二)

    Fabric 的网络节点本质上是互相复制的状态机,节点之间需要保持相同的账本状态.为了实现这个目的,各个节点需要通过共识( consensus )过程,对账本状态的变化达成一致性的认同. Fabric ...

  5. Android Build System Ultimate Guide

    Android Build System Ultimate Guide April 8,2013 Lately, Android Open Source Project has gone throug ...

  6. ORACLE DG 库参数db_file_name_convert和log_file_name_convert的作用

    https://www.cnblogs.com/xqzt/p/5089826.html ORACLE DG 库参数db_file_name_convert和log_file_name_convert的 ...

  7. master-slave replication

    redis save 备份 恢复 root@ubuntu:/etc/init.d# find / -name dump.rdb |xargs ls -alt redis-cli save cp /va ...

  8. GMM demo

    # GMM model # // library(mvtnorm) ) n1 = n2 = mu1 = c(,) mu2 = c(-,-) sigma1 = matrix(c(,.,.,),nrow= ...

  9. 使用@Value注解对bean进行属性注入

    使用@Value注解,可以有三种属性注入的方式: 1. 使用字面量注入 2. 使用EL表达式注入 3. 使用占位符注入 import org.springframework.beans.factory ...

  10. malloc函数分配内存失败的常见原因

    malloc()函数分配内存失败的常见原因:  1. 内存不足.  2. 在前面的程序中出现了内存的越界访问,导致malloc()分配函数所涉及的一些信息被破坏.下次再使用malloc()函数申请内存 ...