码迷,mamicode.com
首页 >  
搜索关键字:perf    ( 197个结果
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float ...
分类:其他好文   时间:2021-06-11 18:08:13    阅读次数:0
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:其他好文   时间:2021-06-11 18:04:10    阅读次数:0
内存泄漏检测工具valgrind 热点函数以及CPU使用率 性能评估
计算机硕士如何规划研究生学习与生活 - 知乎 https://zhuanlan.zhihu.com/p/47716443 fio: 大名鼎鼎的fio,用来直接评估裸盘以及文件系统的I/O性能。 perf:可以用来生成火焰图分析程序中的热点函数以及CPU使用率等,直观的分析出程序中的瓶颈以及问题所在。 ...
分类:其他好文   时间:2021-06-07 20:11:58    阅读次数:0
debug cps 原因
目前已经发现cps 打不上去,top中sys偏高, perf 以及strace 发现时accpet频繁的系统调用! 整体分析过程见:48核cps性能低于8核-debug cps ...
分类:其他好文   时间:2021-04-08 13:52:47    阅读次数:0
火焰图的使用和分析
一、火焰图的生成。 1、采集原始CPU消耗数据:perf record -e cpu-clodk -g -p 3578 -o perf.data, 统计大概1-2分钟,ctrl+c中断即可。 2、使用perf script工具分析perf.data文件:perf script -i perf.dat ...
分类:其他好文   时间:2021-03-17 15:10:21    阅读次数:0
开源好用的一些库
perf_counter:是傻孩子在工作中总结和整理出的一个库,它的特点是在不干扰已有 SysTick 功能的前提下额外为我们提供系统周期测量的功能——并在这基础上衍生出了 delay_us() 和 系统时间戳的功能。 注意: 这里(KEIL MDK下选项-C/C++)的 Assembler Opt ...
分类:其他好文   时间:2021-01-13 10:45:01    阅读次数:0
exp+6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:其他好文   时间:2020-12-28 11:16:34    阅读次数:0
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; / float perf; fl ...
分类:其他好文   时间:2020-12-25 11:55:05    阅读次数:0
k8s 压测工具之perf-test
1、安装go环境 下载go 配置环境变量 export GO_HOME=/usr/local/go export PATH=$GO_HOME/bin:$PATH 2、下载perftest https://github.com/kubernetes/perf-tests/ 3、解压后进入cluster ...
分类:其他好文   时间:2020-12-07 12:07:10    阅读次数:5
计算程序运行时间
time模块下的perf_counter方法可用于精确计算程序运行的时间: 1 import time 2 3 start = time.perf_counter() 4 l = list(range(10000)) 5 end = time.perf_counter() 6 run_time= e ...
分类:其他好文   时间:2020-11-07 17:18:06    阅读次数:24
197条   1 2 3 4 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!