Seperti yang @Stefan tebak dalam komentar pada jawaban @ CaptainGiraffe, Anda mendapatkan cukup banyak dengan menggunakan vektor struct bukan struct vektor. Kode yang diperbaiki terlihat seperti ini:
#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";
}
Dikompilasi dengan kompiler dari VC ++ 2015 CTP, menggunakan -EHsc -O2b2 -GL -Qpar
, saya mendapatkan hasil seperti:
0
100
200
300
Time: 0.135
Mengompilasi dengan g ++ menghasilkan hasil yang sedikit lebih lambat:
0
100
200
300
Time: 0.156
Pada perangkat keras yang sama, menggunakan compiler / JVM dari Java 8u45, saya mendapatkan hasil seperti:
0
100
200
300
Time: 181
Ini sekitar 35% lebih lambat dari versi dari VC ++, dan sekitar 16% lebih lambat dari versi dari g ++.
Jika kita meningkatkan jumlah iterasi ke 2000 yang diinginkan, perbedaannya turun menjadi hanya 3%, menunjukkan bahwa bagian dari keuntungan C ++ dalam hal ini hanyalah memuat lebih cepat (masalah abadi dengan Java), tidak benar-benar dalam eksekusi itu sendiri. Hal ini tidak mengejutkan saya dalam kasus ini - perhitungan yang diukur (dalam kode yang diposting) sangat sepele sehingga saya ragu sebagian besar kompiler dapat melakukan banyak hal untuk mengoptimalkannya.
std::vector<bool>
menggunakan satu bit per elemen untuk menghemat ruang, yang menyebabkan banyak pergeseran bit. Jika Anda menginginkan kecepatan, Anda harus menjauhinya. Gunakanstd::vector<int>
sebagai gantinya.