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. Internet History, Technology, and Security(week2)——History: The First Internet - NSFNet

    前言: 上周学习了<电子计算机的曙光>,对战时及战后的计算机的历史发展有了更丰富的了解,今天继续coursera的课程,感觉已经有点适应了课程的节奏(除了经常有些奇奇怪怪的词汇看都看不懂@ ...

  2. 使用 Markdown 写博客

    后台设置(左侧边栏区找到-设置默认编辑器). 设置为 Markdown 后保存,即可在编辑新博客时生效.

  3. 标签button:点击button按钮时,出现了页面自动刷新的情况

    原html: <button class="btn btn-primary" id="btnSubmit" name="btnSubmit&qu ...

  4. P1080国王游戏

    传送 最大值最小什么的一看就是二分了qwq 然鹅并不知道怎么检查,所以我们换个思路 我们要求出最小的最大值,这肯定和大臣的排列有关,会不会有什么规律? 先看看只有两个大臣的情况 排列:1 2,ans1 ...

  5. qbzt day3 晚上 平衡树的一些思想

    pks大佬的blog 二叉查找树 任何一个节点左子树的所有元素都小于这个节点,右子树的所有元素都大于这个节点 查找一个节点:从根节点开始,比他小就向左走,比他大就向右走 平衡树:解决二叉查找树的一些痛 ...

  6. fpython-笔记(五)装饰器、匿名函数

    一.装饰器 装饰器,这个器就是函数的意思,连起来,就是装饰函数,装饰器本身也是一个函数,它的作用是用来给其他函数添加新功能,比如说,我以前写了很多代码,系统已经上线了,但是性能比较不好,现在想把程序里 ...

  7. 阶段1 语言基础+高级_1-3-Java语言高级_04-集合_07 Collections工具类_2_Collections集合工具类的方法

    默认规则一般都是升序排序 再来创建一个字符串的数组 排序后,按照升序输出结果 自定义类型排序 创建一个Person类,getter和setter 有参构造和无参构造 重写toString的方法 传对象 ...

  8. Week3 - 397. Integer Replacement

    Week3 - 397. Integer Replacement 397.Integer Replacement - Medium Given a positive integer n and you ...

  9. X509格式的证书校验(基于GMSSL2019-06-15版本)

    实现X509格式证书的链式校验 // cert_public.cpp : Defines the exported functions for the DLL application. // #inc ...

  10. python 正则表达式 re.findall &re.finditer

    语法: findall 搜索string,以列表形式返回全部能匹配的子串 re.findall(pattern, string[, flags]) finditer 搜索string,返回一个顺序访问 ...