@Stefan'ın @ CaptainGiraffe'nin cevabına yaptığı bir yorumda tahmin ettiği gibi, bir vektör yapısı yerine bir yapı vektörü kullanarak epey bir kazanç elde edersiniz. Düzeltilmiş kod şuna benzer:
#include <vector>
#include <cmath>
#include <iostream>
#include <time.h>
class FloodIsolation {
public:
FloodIsolation() :
h(0),
floodedCells(0),
floodedCellsTimeInterval(0),
qInflow(0),
qStartTime(0),
qEndTime(0),
lowerFloorCells(0),
cellLocationX(0),
cellLocationY(0),
cellLocationZ(0),
levelOfCell(0),
valueOfCellIds(0),
h0(0),
vU(0),
vV(0),
vUh(0),
vVh(0),
vUh0(0),
vVh0(0),
ghh(0),
sfx(0),
sfy(0),
qIn(0),
typeInterface(nEdges, 0),
neighborIds(nEdges, 0)
{
}
~FloodIsolation(){
}
void Update() {
h = h + 1;
floodedCells = !floodedCells;
floodedCellsTimeInterval = !floodedCellsTimeInterval;
qInflow = qInflow + 1;
qStartTime = qStartTime + 1;
qEndTime = qEndTime + 1;
lowerFloorCells = lowerFloorCells + 1;
cellLocationX = cellLocationX + 1;
cellLocationY = cellLocationY + 1;
cellLocationZ = cellLocationZ + 1;
levelOfCell = levelOfCell + 1;
valueOfCellIds = valueOfCellIds + 1;
h0 = h0 + 1;
vU = vU + 1;
vV = vV + 1;
vUh = vUh + 1;
vVh = vVh + 1;
vUh0 = vUh0 + 1;
vVh0 = vVh0 + 1;
ghh = ghh + 1;
sfx = sfx + 1;
sfy = sfy + 1;
qIn = qIn + 1;
for(int j = 0; j < nEdges; ++j) {
++typeInterface[j];
++neighborIds[j];
}
}
private:
static const int nEdges = 6;
bool floodedCells;
bool floodedCellsTimeInterval;
std::vector<int> neighborIds;
double valueOfCellIds;
double h;
double h0;
double vU;
double vV;
double vUh;
double vVh;
double vUh0;
double vVh0;
double ghh;
double sfx;
double sfy;
double qInflow;
double qStartTime;
double qEndTime;
double qIn;
double nx;
double ny;
double floorLevels;
int lowerFloorCells;
bool flagInterface;
std::vector<int> typeInterface;
bool floorCompleteleyFilled;
double cellLocationX;
double cellLocationY;
double cellLocationZ;
int levelOfCell;
};
int main() {
std::vector<FloodIsolation> isolation(20000);
clock_t start = clock();
for (int i = 0; i < 400; ++i) {
if(i % 100 == 0) {
std::cout << i << "\n";
}
for (auto &f : isolation)
f.Update();
}
clock_t stop = clock();
std::cout << "Time: " << difftime(stop, start) / 1000 << "\n";
}
VC ++ 2015 CTP'den derleyici ile derlendiğinde, aşağıdaki -EHsc -O2b2 -GL -Qpar
gibi sonuçlar alıyorum:
0
100
200
300
Time: 0.135
G ++ ile derlemek, biraz daha yavaş bir sonuç verir:
0
100
200
300
Time: 0.156
Aynı donanımda, Java 8u45'ten derleyiciyi / JVM'yi kullanarak aşağıdaki gibi sonuçlar alıyorum:
0
100
200
300
Time: 181
Bu, VC ++ sürümünden yaklaşık% 35, g ++ sürümünden yaklaşık% 16 daha yavaştır.
Yineleme sayısını istenen 2000'e yükseltirsek, fark yalnızca% 3'e düşer, bu da C ++ 'nın avantajının bu kısmının, uygulamanın kendisinde değil, yalnızca daha hızlı yükleme (Java ile uzun süreli bir sorun) olduğunu düşündürür. Bu bana bu durumda şaşırtıcı gelmiyor - ölçülen hesaplama (gönderilen kodda) o kadar önemsiz ki çoğu derleyicinin bunu optimize etmek için çok şey yapabileceğinden şüpheliyim.
std::vector<bool>
Yer kazanmak için öğe başına bir bit kullanır, bu da çok fazla bit kaydırmaya yol açar. Hız istiyorsanız, ondan uzak durmalısınız.std::vector<int>
Bunun yerine kullanın .