gpt4 book ai didi

c++ - 使用多线程的 C++ 中的 Mandelbrot 图像生成器 "overwrites(?)"一半的图像

转载 作者:搜寻专家 更新时间:2023-10-31 00:26:13 25 4
gpt4 key购买 nike

我真的不知道如何正确解释我的问题,但希望您可以使用我提供的图片理解它。

我使用模板和 Internet 上的教程制作了这个 Mandelbrot 图像生成器,我正在尝试使生成过程多线程化,这样图像就被分成 4 个相等的部分,每个线程计算该部分。问题是,图像的前半部分变黑,后半部分生成正常。我不知道问题出在哪里。

这段代码在没有多线程的情况下也能正常工作,所以即使我觉得问题出在那里,我仍然找不到它。

代码:

// mandelbrot.cpp
// compile with: g++ -std=c++11 -pthread mandelbrot.cpp -o mandelbrot
// view output with: eog mandelbrot.ppm

#include <fstream>
#include <iostream>
#include <complex> // if you make use of complex number facilities in C++
#include <thread>
#include <vector>

template <class T>
struct RGB
{
T r, g, b;
};

template <class T>
class Matrix
{
public:
Matrix(const size_t rows, const size_t cols) : _rows(rows), _cols(cols)
{
_matrix = new T *[rows];
for (size_t i = 0; i < rows; ++i)
{
_matrix[i] = new T[cols];
}
}
Matrix(const Matrix &m) : _rows(m._rows), _cols(m._cols)
{
_matrix = new T *[m._rows];
for (size_t i = 0; i < m._rows; ++i)
{
_matrix[i] = new T[m._cols];
for (size_t j = 0; j < m._cols; ++j)
{
_matrix[i][j] = m._matrix[i][j];
}
}
}
~Matrix()
{
for (size_t i = 0; i < _rows; ++i)
{
delete[] _matrix[i];
}
delete[] _matrix;
}
T *operator[](const size_t nIndex)
{
return _matrix[nIndex];
}
size_t width() const { return _cols; }
size_t height() const { return _rows; }

protected:
size_t _rows, _cols;
T **_matrix;
};

// Portable PixMap image
class PPMImage : public Matrix<RGB<unsigned char>>
{
public:
PPMImage(const size_t height, const size_t width) : Matrix(height, width) {}
void save(const std::string &filename)
{
std::ofstream out(filename, std::ios_base::binary);
out << "P6" << std::endl
<< _cols << " " << _rows << std::endl
<< 255 << std::endl;
for (size_t y = 0; y < _rows; y++)
for (size_t x = 0; x < _cols; x++)
out << _matrix[y][x].r << _matrix[y][x].g << _matrix[y][x].b;
}
};

const void calculateImage(PPMImage &image, unsigned &width, unsigned &height, unsigned &minX, unsigned &maxX, unsigned &minY, unsigned &maxY)
{
double MinRe = -2.0;
double MaxRe = 1.0;
double MinIm = -1.2;
double MaxIm = MinIm + (MaxRe - MinRe) * width / height;
double Re_facor = (MaxRe - MinRe) / (width - 1);
double Im_factor = (MaxIm - MinIm) / (height - 1);
unsigned MaxIterations = 30;

for (unsigned y = minY; y < maxY; ++y)
{
double c_im = MaxIm - y * Im_factor;
for (unsigned x = minX; x < maxX; ++x)
{
double c_re = MinRe + x * Re_facor;

double Z_re = c_re, Z_im = c_im;
bool isInside = true;
for (unsigned n = 0; n < MaxIterations; ++n)
{
double Z_re2 = Z_re * Z_re, Z_im2 = Z_im * Z_im;
if (Z_re2 + Z_im2 > 4)
{
isInside = false;
break;
}
Z_im = 2 * Z_re * Z_im + c_im;
Z_re = Z_re2 - Z_im2 + c_re;
}
if (isInside)
{
image[y][x].r = 255;
image[y][x].g = 0;
image[y][x].b = 0;
}
}
}
}

int main()
{
unsigned width = 1600;
unsigned height = 1600;
unsigned minX = 0;
unsigned minY = 0;
unsigned maxX = 800;
unsigned maxY = 800;

std::cout << "Creating image...\n";
PPMImage image(height, width);

std::vector<std::thread> workers;
for (int i = 0; i < 4; i++)
{
workers.push_back(std::thread(calculateImage, std::ref(image), std::ref(width), std::ref(height), std::ref(minX), std::ref(maxX), std::ref(minY), std::ref(maxY)));
std::cout << "Thread #" << i << " created. Calculating (" << minX << "," << minY << ") to (" << maxX << "," << maxY << ").\n";

if (i == 0)
{
minY = 800;
maxY = 1600;
}
else if (i == 1)
{
minX = 800;
maxX = 1600;
minY = 0;
maxY = 800;
}
else if (i == 2)
{
minX = 800;
maxX = 1600;
minY = 800;
maxY = 1600;
}
}

for (auto &th : workers)
{
th.join();
}

std::cout << "Saving to image...\n";
image.save("mandelbrot.ppm");

std::cout << "Finished.\n";
return 0;
}

结果图像: Result

可以看到前半部分有一部分计算出来了,但大部分还是黑的,实际上是被三四线程“覆盖”了。

这可能是一个非常明显的错误,但我想不通。

如果我尝试不使用多线程,例如:

calculateImage(image, width, height, minX, maxX, minY, maxY);

它工作正常。

最佳答案

您正在将对 minXminYmaxXmaxY 的引用传递给线程,但随后更改它们的值在启动后立即生效。

所有线程都将引用 main 中的相同变量。所有线程都可以观察到值的更改。

改为按值传递四个变量。

关于c++ - 使用多线程的 C++ 中的 Mandelbrot 图像生成器 "overwrites(?)"一半的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53381279/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com