Home | History | Annotate | Download | only in mandelbrot

Lines Matching refs:packetSize

33   enum { packetSize = Eigen::internal::packet_traits<Real>::size }; // number of reals in a Packet
34 typedef Eigen::Array<Real, packetSize, 1> Packet; // wrap a Packet as a vector
38 const int alignedWidth = (img_width/packetSize)*packetSize;
57 for(int i = 0; i < packetSize; i++) pzi_start[i] = pci_start[i] = start.y() + y * step.y();
59 for(int x = 0; x < alignedWidth; x += packetSize, pix += packetSize)
62 for(int i = 0; i < packetSize; i++) pzr[i] = pcr[i] = start.x() + (x+i) * step.x();
67 typedef Eigen::Matrix<int, packetSize, 1> Packeti;
91 total_iter += iters_before_test * packetSize;
96 for(int i = 0; i < packetSize; i++)
104 // if the width is not a multiple of packetSize, fill the remainder in black
150 int packetSize = threads[0]->single_precision
157 +(packetSize==1 ? QString("no vectorization")
158 : QString("vectorized (%1 per packet)").arg(packetSize)));