123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- #include "IterationGenerator.h"
- #include "ExecData.h"
- #include "Mandel.h"
- #include "OpenClInternal.h"
- #include <omp.h>
- using mnd::IterationGenerator;
- using mnd::NaiveGenerator;
- using mnd::NaiveIRGenerator;
- using mnd::IterationFormula;
- namespace mnd
- {
- template class NaiveIRGenerator<float>;
- template class NaiveIRGenerator<double>;
- template class NaiveIRGenerator<mnd::DoubleDouble>;
- template class NaiveIRGenerator<mnd::QuadDouble>;
- }
- IterationGenerator::IterationGenerator(IterationFormula z0, IterationFormula zi,
- const mnd::Real& prec) :
- mnd::MandelGenerator{ prec },
- z0{ std::move(z0) },
- zi{ std::move(zi) }
- {
- }
- NaiveGenerator::NaiveGenerator(IterationFormula z0, IterationFormula zi,
- const mnd::Real& prec) :
- IterationGenerator{ std::move(z0), std::move(zi), prec }
- {
- this->z0.optimize();
- this->zi.optimize();
- }
- void NaiveGenerator::generate(const mnd::MandelInfo& info, float* data)
- {
- const MandelViewport& view = info.view;
- const bool parallel = true;
- using T = double;
- T viewx = mnd::convert<T>(view.x);
- T viewy = mnd::convert<T>(view.y);
- T wpp = mnd::convert<T>(view.width / info.bWidth);
- T hpp = mnd::convert<T>(view.height / info.bHeight);
- if constexpr (parallel)
- omp_set_num_threads(omp_get_num_procs());
- //#pragma omp parallel for schedule(static, 1) if (parallel)
- for (long j = 0; j < info.bHeight; j++) {
- T y = viewy + T(double(j)) * hpp;
- long i = 0;
- for (i; i < info.bWidth; i++) {
- T x = viewx + T(double(i)) * wpp;
- T cx = x;
- T cy = y;
- std::complex<double> z = calc(*z0.expr, { 0, 0 }, { x, y });
- std::complex<double> c{ cx, cy };
- int k = 0;
- for (k = 0; k < info.maxIter; k++) {
- z = this->iterate(z, c);
- if (std::abs(z) >= 4)
- break;
- }
- data[i + j * info.bWidth] = float(k);
- /*if (info.smooth) {
- if (k >= info.maxIter)
- data[i + j * info.bWidth] = float(info.maxIter);
- else {
- float aapp = mnd::convert<float>(a);
- float bapp = mnd::convert<float>(b);
- data[i + j * info.bWidth] = ((float) k) + 1 - ::logf(::logf(aapp * aapp + bapp * bapp) / 2) / ::logf(2.0f);
- }
- }
- else
- data[i + j * info.bWidth] = k;*/
- }
- }
- }
- std::complex<double> NaiveGenerator::iterate(std::complex<double> z, std::complex<double> c)
- {
- auto& expr = *zi.expr;
- return calc(expr, z, c);
- }
- std::complex<double> NaiveGenerator::calc(mnd::Expression& expr, std::complex<double> z, std::complex<double> c)
- {
- std::complex<double> result = 0;
- std::visit([this, &result, z, c] (auto&& ex) {
- using T = std::decay_t<decltype(ex)>;
- if constexpr (std::is_same<T, mnd::Constant>::value) {
- result = std::complex{ mnd::convert<double>(ex.re), mnd::convert<double>(ex.im) };
- }
- else if constexpr (std::is_same<T, mnd::Variable>::value) {
- if (ex.name == "z")
- result = z;
- else if (ex.name == "c")
- result = c;
- else if (ex.name == "i")
- result = std::complex{ 0.0, 1.0 };
- }
- else if constexpr (std::is_same<T, mnd::Negation>::value) {
- result = -calc(*ex.operand, z, c);
- }
- else if constexpr (std::is_same<T, mnd::Addition>::value) {
- if (ex.subtraction)
- result = calc(*ex.left, z, c) - calc(*ex.right, z, c);
- else
- result = calc(*ex.left, z, c) + calc(*ex.right, z, c);
- }
- else if constexpr (std::is_same<T, mnd::Multiplication>::value) {
- result = calc(*ex.left, z, c) * calc(*ex.right, z, c);
- }
- else if constexpr (std::is_same<T, mnd::Division>::value) {
- result = calc(*ex.left, z, c) / calc(*ex.right, z, c);
- }
- else if constexpr (std::is_same<T, mnd::Pow>::value) {
- result = std::pow(calc(*ex.left, z, c), calc(*ex.right, z, c));
- }
- }, expr);
- return result;
- }
- template<typename T>
- NaiveIRGenerator<T>::NaiveIRGenerator(const mnd::ir::Formula& irf,
- const mnd::Real& prec) :
- mnd::MandelGenerator{ prec },
- form{ irf }
- {
- }
- template<typename T>
- void NaiveIRGenerator<T>::generate(const mnd::MandelInfo& info, float* data)
- {
- const MandelViewport& view = info.view;
- const bool parallel = true;
- using T = double;
- T viewx = mnd::convert<T>(view.x);
- T viewy = mnd::convert<T>(view.y);
- T wpp = mnd::convert<T>(view.width / info.bWidth);
- T hpp = mnd::convert<T>(view.height / info.bHeight);
- if constexpr (parallel)
- omp_set_num_threads(omp_get_num_procs());
- //#pragma omp parallel for schedule(static, 1) if (parallel)
- for (long j = 0; j < info.bHeight; j++) {
- T y = viewy + T(double(j)) * hpp;
- long i = 0;
- for (i; i < info.bWidth; i++) {
- T x = viewx + T(double(i)) * wpp;
- T a = calc(form.startA, x, y, 0, 0);
- T b = calc(form.startB, x, y, 0, 0);
- int k = 0;
- for (k = 0; k < info.maxIter; k++) {
- double newA = calc(form.newA, a, b, x, y);
- double newB = calc(form.newB, a, b, x, y);
- a = newA;
- b = newB;
- if (a * a + b * b >= 16.0)
- break;
- }
- data[i + j * info.bWidth] = float(k);
- }
- }
- }
- template<typename T>
- double NaiveIRGenerator<T>::calc(mnd::ir::Node* expr, double a, double b, double x, double y)
- {
- struct DoubleVisitor
- {
- double a, b, x, y;
- double visitNode(ir::Node* n) {
- return std::visit(*this, *n);
- }
- double operator()(const ir::Constant& c) {
- return mnd::convert<double>(c.value);
- }
- double operator()(const ir::Variable& v) {
- if (v.name == "z_re")
- return a;
- else if (v.name == "z_im")
- return b;
- else if (v.name == "c_re")
- return x;
- else if (v.name == "c_im")
- return y;
- else
- return 0.0;
- }
- double operator()(const ir::Negation& n) {
- return -visitNode(n.value);
- }
- double operator()(const ir::Addition& n) {
- return visitNode(n.left) + visitNode(n.right);
- }
- double operator()(const ir::Subtraction& n) {
- return visitNode(n.left) - visitNode(n.right);
- }
- double operator()(const ir::Multiplication& n) {
- return visitNode(n.left) * visitNode(n.right);
- }
- double operator()(const ir::Division& n) {
- return visitNode(n.left) / visitNode(n.right);
- }
- double operator()(const ir::Atan2& n) {
- return ::atan2(visitNode(n.left), visitNode(n.right));
- }
- double operator()(const ir::Pow& n) {
- return ::pow(visitNode(n.left), visitNode(n.right));
- }
- double operator()(const ir::Cos& n) {
- return ::cos(visitNode(n.value));
- }
- double operator()(const ir::Sin& n) {
- return ::sin(visitNode(n.value));
- }
- double operator()(const ir::Exp& n) {
- return ::exp(visitNode(n.value));
- }
- double operator()(const ir::Ln& n) {
- return ::log(visitNode(n.value));
- }
- };
- DoubleVisitor dv{ a, b, x, y };
- return dv.visitNode(expr);
- }
- using mnd::CompiledGenerator;
- using mnd::CompiledClGenerator;
- CompiledGenerator::CompiledGenerator(std::unique_ptr<mnd::ExecData> execData) :
- MandelGenerator{ 1.0e-15 },
- execData{ std::move(execData) }
- {
- }
- CompiledGenerator::CompiledGenerator(CompiledGenerator&&) = default;
- CompiledGenerator::~CompiledGenerator(void)
- {
- }
- /*__declspec(noinline)
- int iter(double x, double y, int maxIter)
- {
- int k = 0;
- double a = x;
- double b = y;
- for (k = 0; k < maxIter; k++) {
- double aa = a * a;
- double bb = b * b;
- double abab = a * b + a * b;
- a = aa - bb + x;
- b = abab + y;
- if (aa + bb >= 16)
- break;
- }
- return k;
- }*/
- void CompiledGenerator::generate(const mnd::MandelInfo& info, float* data)
- {
- using IterFunc = int (*)(double, double, int);
- omp_set_num_threads(omp_get_num_procs());
- #pragma omp parallel for schedule(static, 1)
- for (int i = 0; i < info.bHeight; i++) {
- double y = mnd::convert<double>(info.view.y + info.view.height * i / info.bHeight);
- for (int j = 0; j < info.bWidth; j++) {
- double x = mnd::convert<double>(info.view.x + info.view.width * j / info.bWidth);
- IterFunc iterFunc = asmjit::ptr_as_func<IterFunc>(this->execData->iterationFunc);
- int k = iterFunc(x, y, info.maxIter);
- data[i * info.bWidth + j] = float(k);
- }
- }
- }
- std::string CompiledGenerator::dump(void) const
- {
- asmjit::String d;
- execData->compiler->dump(d);
- return d.data();
- }
- #ifdef WITH_OPENCL
- CompiledClGenerator::CompiledClGenerator(const mnd::MandelDevice& device, const std::string& code) :
- ClGeneratorFloat{ device.getClDevice().device, code }
- {
- }
- void CompiledClGenerator::generate(const mnd::MandelInfo& info, float* data)
- {
- ::size_t bufferSize = info.bWidth * info.bHeight * sizeof(float);
- cl::Buffer buffer_A(context, CL_MEM_WRITE_ONLY, bufferSize);
- float pixelScaleX = float(info.view.width / info.bWidth);
- float pixelScaleY = float(info.view.height / info.bHeight);
- static cl::Kernel iterate = cl::Kernel(program, "iterate");
- iterate.setArg(0, buffer_A);
- iterate.setArg(1, int(info.bWidth));
- iterate.setArg(2, float(info.view.x));
- iterate.setArg(3, float(info.view.y));
- iterate.setArg(4, float(pixelScaleX));
- iterate.setArg(5, float(pixelScaleY));
- iterate.setArg(6, int(info.maxIter));
- iterate.setArg(7, int(info.smooth ? 1 : 0));
- iterate.setArg(8, int(info.julia ? 1 : 0));
- iterate.setArg(9, float(info.juliaX));
- iterate.setArg(10, float(info.juliaY));
- queue.enqueueNDRangeKernel(iterate, 0, cl::NDRange(info.bWidth * info.bHeight));
- queue.enqueueReadBuffer(buffer_A, CL_TRUE, 0, bufferSize, data);
- }
- #endif // WITH_OPENCL
|