- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我有一个数组 A
有零和一。我想找到 A
中所有数字的总和。我想测试两个功能:
第一个函数
void test1(int curIndex){
if(curIndex == size) return;
test1(curIndex+1);
s+=A[curIndex];
}
第二个功能
void test2(int curIndex){
if(curIndex == size) return;
s+=A[curIndex];
test2(curIndex+1);
}
我使用了PAPI library要计算指令的数量,这里是整个实验:
#include <iostream>
#include <fstream>
#include "Statistics.h"
using namespace std;
int size;
int *A;
int s;
void test3(int curIndex){
if(curIndex == size) return;
test3(curIndex+1);
s+=A[curIndex];
}
int main(int argc, char* argv[]){
size = atoi(argv[1]);
if(argc!=2){
cout<<"type ./executable size{odd integer}"<<endl;
return 1;
}
if(size%2!=1){
cout<<"size must be an odd number"<<endl;
return 1;
}
A = new int[size];
int i;
for(i=0;i<size;i++){
if(i%2==0){
A[i] = false;
}
else{
A[i] = true;
}
}
Statistics stat(1);
stat.start();
test3(0);
stat.stop();
stat.printWithHelp();
cout<<s<<endl;
return 0;
}
这是 Statistics.h
文件:
#ifndef TRIPLETPARSER_STATISTICS_H
#define TRIPLETPARSER_STATISTICS_H
#include <time.h>
#include <unistd.h>
#include <fstream>
#include <papi.h>
#include <iostream>
#include <iostream>
#define BILLION 1000000000LL
using namespace std;
class Statistics {
private:
timespec s, e;
/*
PAPI_BR_CN Conditional branch instructions
PAPI_BR_INS Branch instructions
PAPI_BR_MSP Conditional branch instructions mispredicted
PAPI_BR_NTK Conditional branch instructions not taken
PAPI_BR_PRC Conditional branch instructions correctly predicted
PAPI_BR_TKN Conditional branch instructions taken
PAPI_BR_UCN Unconditional branch instructions
PAPI_BRU_IDL Cycles branch units are idle
PAPI_BTAC_M Branch target address cache misses
PAPI_TLB_DM Data translation lookaside buffer misses
*/
int events[10]; // , PAPI_L2_TCA,PAPI_L3_TCM,PAPI_L3_TCA PAPI_BR_CN, PAPI_BR_PRC}; //type of events we are interested in
int num_hwcntrs; //total amount of events stored in 'events' array
long long values[10];
long long counters[10];
void handle_error(int err){
std::cerr << "PAPI error: " << err << std::endl;
}
public:
Statistics(int papi){
for(size_t i = 0; i< 10; i++)
counters[i]=0.0;
switch(papi){
case 0:
num_hwcntrs = 0;
break;
case 1:
num_hwcntrs = 6;
events[0] = PAPI_L2_TCA;
events[1] = PAPI_L3_TCA;
events[2] = PAPI_L3_TCM;
events[3] = PAPI_TOT_INS;
events[4] = PAPI_BR_INS;
events[5] = PAPI_BR_MSP;
break;
}
}
void start(){
for(size_t i = 0; i< 10; i++)
counters[i]=0.0;
if (num_hwcntrs != 0 && PAPI_start_counters(events, num_hwcntrs) != PAPI_OK)
handle_error(1);
}
void start(float ratio){
if (num_hwcntrs != 0 && PAPI_start_counters(events, num_hwcntrs) != PAPI_OK)
handle_error(1);
}
void stop(){
if (num_hwcntrs != 0 && PAPI_stop_counters(values, num_hwcntrs) != PAPI_OK)
handle_error(1);
update();
}
void stop(float ratio){
if (num_hwcntrs != 0 && PAPI_stop_counters(values, num_hwcntrs) != PAPI_OK)
handle_error(1);
update();
}
void update(){
for(size_t i = 0; i < num_hwcntrs; i++)
counters[i] += values[i];
}
void print(){
for(int i=0;i<num_hwcntrs;i++)
std::cout << counters[i] << "\t";
//cout<<"L2 cache miss ratio: "<<counters[1]/(double)counters[0]<<endl;
//cout<<"L3 cache miss ratio: "<<counters[3]/(double)counters[2]<<endl;
}
void printWithHelp(){
cout<<"L2 accesses: "<<counters[0]<<endl;
cout<<"L2 miss/access ratio: "<<(double)counters[1]/counters[0]<<endl;
cout<<"L3 accesses: "<<counters[1]<<endl;
cout<<"L3 misses: "<<counters[2]<<endl;
cout<<"L3 miss/access ratio: "<<(double)counters[2]/counters[1]<<endl;
cout<<"Instructions: "<<counters[3]<<endl;
cout<<"Branches: "<<counters[4]<<endl;
cout<<"Branch mispredictions: "<<counters[5]<<endl;
cout<<"Branch miss/predict ratio: "<<(double)counters[5]/counters[4]<<endl;
}
void print(float avg_ratio){
for (int i = 0; i<num_hwcntrs; i++)
std::cout << (double)(avg_ratio*counters[i]) << "\t";
}
};
#endif //TRIPLETPARSER_STATISTICS_H
这是我在 A
的大小为 111,111
L2 accesses: 24126
L2 miss/access ratio: 0.131559
L3 accesses: 3174
L3 misses: 587
L3 miss/access ratio: 0.18494
Instructions: 1022776
Branches: 178113
Branch mispredictions: 6976
Branch miss/predict ratio: 0.0391661
这是我在 A
的大小为 111,111
L2 accesses: 7090
L2 miss/access ratio: 0.163752
L3 accesses: 1161
L3 misses: 507
L3 miss/access ratio: 0.436693
Instructions: 555860
Branches: 111189
Branch mispredictions: 25
Branch miss/predict ratio: 0.000224842
为什么结果不同?指令减少了一半,几乎消除了分支错误预测。这里发生了什么?
最佳答案
您的第二个函数是尾递归的。这意味着编译器可以将其优化为:
void test2(int curIndex){
while(true)
{
if(curIndex == size) return;
s+=A[curIndex];
curIndex = curIndex + 1;
}
}
这显着减少了指令数量。它还减少了(最多)一个所需的堆栈帧数。因此,它使用的内存要少得多,从而减少缓存未命中。
编译器无法对第一个函数进行这种优化。
更新:有人问为什么编译器不能对第一个函数进行优化。
让我们从观察函数不是尾递归开始。如果最后发生的事情是对同一函数的递归调用,然后返回该递归调用的结果(如果有),则该函数是尾递归的。
显然,第一个函数不是这样,s+=A[curIndex];
是在递归调用之后执行的。
然后人们问为什么编译器不能把第一个函数变成第二个。
这应该是它的结束,但当然人们会想知道为什么没有人设计、实现和测试这个功能。好吧,也许没有人想过这样做。但更重要的是,该功能远非微不足道。
首先,编译器必须明白这一点
test1(curIndex+1);
s+=A[curIndex];
和
s+=A[curIndex];
test1(curIndex+1);
是等价的。这是一个重要的观察,因为从机械的角度来看,它们并不等同!实际上,第一个有效地从数组的末尾循环到开头,而第二个从数组的开头循环到结尾。那是一样的吗?当 A 是 int* (并且 s 在 int 中)时,它会产生相同的结果,但在其他情况下(例如,当 A 是 double* 而 s 是 double 时)则不会。我们是否期望编译器如此聪明?
因此,我们有一个潜在的功能,实现成本很高。但是,如果 yield 很高,那么成本可能是值得的。福利高吗?我猜这在实际代码中很少发生,即开发人员很可能无论如何都会编写第二种形式。所以你有它:一个昂贵的功能,几乎没有什么好处。恕我直言,编译器开发人员明智的做法是将宝贵的时间花在更有用的功能上。
关于c++ - 为什么 G++ 编译器不以相同的方式处理这两个函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39573754/
我一直在阅读有关汇编函数的内容,但对于是使用进入和退出还是仅使用调用/返回指令来快速执行,我感到很困惑。一种方式快而另一种方式更小吗?例如,在不内联函数的情况下,在汇编中执行此操作的最快(stdcal
我正在处理一个元组列表,如下所示: res = [('stori', 'JJ'), ('man', 'NN'), ('unnatur', 'JJ'), ('feel', 'NN'), ('pig',
最近我一直在做很多网络或 IO 绑定(bind)操作,使用线程有助于加快代码速度。我注意到我一直在一遍又一遍地编写这样的代码: threads = [] for machine, user, data
假设我有一个名为 user_stats 的资源,其中包含用户拥有的帖子、评论、喜欢和关注者的数量。是否有一种 RESTful 方式只询问该统计数据的一部分(即,对于 user_stats/3,请告诉我
我有一个简单的 api,它的工作原理是这样的: 用户创建一个请求 ( POST /requests ) 另一个用户检索所有请求 ( GET /requests ) 然后向请求添加报价 ( POST /
考虑以下 CDK Python 中的示例(对于这个问题,不需要 AWS 知识,这应该对基本上任何构建器模式都有效,我只是在这个示例中使用 CDK,因为我使用这个库遇到了这个问题。): from aws
Scala 中管理对象池的首选方法是什么? 我需要单线程创建和删除大规模对象(不需要同步)。在 C++ 中,我使用了静态对象数组。 在 Scala 中处理它的惯用和有效方法是什么? 最佳答案 我会把它
我有一个带有一些内置方法的类。这是该类的抽象示例: class Foo: def __init__(self): self.a = 0 self.b = 0
返回和检查方法执行的 Pythonic 方式 我目前在 python 代码中使用 golang 编码风格,决定移动 pythonic 方式 例子: import sys from typing imp
我正在开发一个 RESTful API。其中一个 URL 允许调用者通过 id 请求特定人员的记录。 返回该 id 不存在的记录的常规值是什么?服务器是否应该发回一个空对象或者一个 404,或者其他什
我正在使用 pathlib.Path() 检查文件是否存在,并使用 rasterio 将其作为图像打开. filename = pathlib.Path("./my_file-name.tif") 但
我正在寻找一种 Pythonic 方式来从列表和字典创建嵌套字典。以下两个语句产生相同的结果: a = [3, 4] b = {'a': 1, 'b': 2} c = dict(zip(b, a))
我有一个正在操裁剪理设备的脚本。设备有时会发生物理故障,当它发生时,我想重置设备并继续执行脚本。我有这个: while True: do_device_control() device
做组合别名的最pythonic和正确的方法是什么? 这是一个假设的场景: class House: def cleanup(self, arg1, arg2, kwarg1=False):
我正在开发一个小型客户端服务器程序来收集订单。我想以“REST(ful)方式”来做到这一点。 我想做的是: 收集所有订单行(产品和数量)并将完整订单发送到服务器 目前我看到有两种选择: 将每个订单行发
我知道在 Groovy 中您可以使用字符串调用类/对象上的方法。例如: Foo."get"(1) /* or */ String meth = "get" Foo."$meth"(1) 有没有办法
在 ECMAScript6 中,您可以使用扩展运算符来解构这样的对象 const {a, ...rest} = obj; 它将 obj 浅拷贝到 rest,不带属性 a。 有没有一种干净的方法可以在
我有几个函数返回数字或None。我希望我的包装函数返回第一个不是 None 的结果。除了下面的方法之外,还有其他方法吗? def func1(): return None def func2(
假设我想设计一个 REST api 来讨论歌曲、专辑和艺术家(实际上我就是这样做的,就像我之前的 1312414 个人一样)。 歌曲资源始终与其所属专辑相关联。相反,专辑资源与其包含的所有歌曲相关联。
这是我认为必须经常出现的问题,但我一直无法找到一个好的解决方案。假设我有一个函数,它可以作为参数传递一个开放资源(如文件或数据库连接对象),或者需要自己创建一个。如果函数需要自己打开文件,最佳实践通常
我是一名优秀的程序员,十分优秀!