- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以,当我在线程外创建“boxes”和“boxbound”变量时出现运行时错误,但是当我将它移动到线程内的 for 循环中时错误消失了,这可能是什么原因?
void Flyscene::raytraceScene(int width, int height) {
std::cout << "ray tracing ..." << std::endl;
//start of acceleration structure
std::vector<std::vector<Tucano::Face>> boxes = firstBox(mesh);
std::vector<std::vector<Eigen::Vector3f>> boxbounds;
for (int i = 0; i < boxes.size(); i++) {
boxbounds.push_back(getBoxLimits(boxes[i], mesh));
}
/////
// if no width or height passed, use dimensions of current viewport
Eigen::Vector2i image_size(width, height);
if (width == 0 || height == 0) {
image_size = flycamera.getViewportSize();
}
// create 2d vector to hold pixel colors and resize to match image size
vector<vector<Eigen::Vector3f>> pixel_data;
pixel_data.resize(image_size[1]);
for (int i = 0; i < image_size[1]; ++i)
pixel_data[i].resize(image_size[0]);
// origin of the ray is always the camera center
Eigen::Vector3f origin = flycamera.getCenter();
Eigen::Vector3f screen_coords;
// Multi Threading
// Comment this if you don't want multi-threading
//-----------------------------------------------------//
int max_pixels = (image_size[0] * image_size[1]); //width * height
// Get amount of cores of your CPU
int cores = std::thread::hardware_concurrency();
// Keep track of # of pixels (atomic making sure no 2 threads render the same pixel)
volatile std::atomic<std::size_t> curr_pixel(0);
// Stores all cores assigned to a task
std::vector<std::future<void>> future_vector;
cout << "Threads supported: " << cores << "\n";
while (cores--)
future_vector.emplace_back(
std::async([=, &origin, &curr_pixel, &pixel_data]()
{
while (true)
{
int index = curr_pixel++;
if (index >= max_pixels)
break;
std::size_t i = index % image_size[1];
std::size_t j = index / image_size[1];
//cout << "at index: " << index << std::endl;
// create a ray from the camera passing through the pixel (i,j)
auto screen_coords = flycamera.screenToWorld(Eigen::Vector2f(i, j));
// launch raytracing for the given ray and write result to pixel data
pixel_data[i][j] = traceRay(0,origin, screen_coords, boxes, boxbounds);
if (index % 10000 == 0) {
std::cout << "Percentage done (mt): " << (float)(index / 10000) << "%" << std::endl;
}
}
}));
// Call futures (Async jobs), this will activate all process on the cores
for (auto& e : future_vector) {
e.get();
}
然而,当我将它移到下面时,错误就消失了;
void Flyscene::raytraceScene(int width, int height) {
std::cout << "ray tracing ..." << std::endl;
// if no width or height passed, use dimensions of current viewport
Eigen::Vector2i image_size(width, height);
if (width == 0 || height == 0) {
image_size = flycamera.getViewportSize();
}
// create 2d vector to hold pixel colors and resize to match image size
vector<vector<Eigen::Vector3f>> pixel_data;
pixel_data.resize(image_size[1]);
for (int i = 0; i < image_size[1]; ++i)
pixel_data[i].resize(image_size[0]);
// origin of the ray is always the camera center
Eigen::Vector3f origin = flycamera.getCenter();
Eigen::Vector3f screen_coords;
// Multi Threading
// Comment this if you don't want multi-threading
//-----------------------------------------------------//
int max_pixels = (image_size[0] * image_size[1]); //width * height
// Get amount of cores of your CPU
int cores = std::thread::hardware_concurrency();
// Keep track of # of pixels (atomic making sure no 2 threads render the same pixel)
volatile std::atomic<std::size_t> curr_pixel(0);
// Stores all cores assigned to a task
std::vector<std::future<void>> future_vector;
cout << "Threads supported: " << cores << "\n";
while (cores--)
future_vector.emplace_back(
std::async([=, &origin, &curr_pixel, &pixel_data]()
{
while (true)
{
int index = curr_pixel++;
if (index >= max_pixels)
break;
std::size_t i = index % image_size[1];
std::size_t j = index / image_size[1];
//cout << "at index: " << index << std::endl;
//start of acceleration structure
std::vector<std::vector<Tucano::Face>> boxes = firstBox(mesh);
std::vector<std::vector<Eigen::Vector3f>> boxbounds;
for (int i = 0; i < boxes.size(); i++) {
boxbounds.push_back(getBoxLimits(boxes[i], mesh));
}
/////
// create a ray from the camera passing through the pixel (i,j)
auto screen_coords = flycamera.screenToWorld(Eigen::Vector2f(i, j));
// launch raytracing for the given ray and write result to pixel data
pixel_data[i][j] = traceRay(0,origin, screen_coords, boxes, boxbounds);
if (index % 10000 == 0) {
std::cout << "Percentage done (mt): " << (float)(index / 10000) << "%" << std::endl;
}
}
}));
// Call futures (Async jobs), this will activate all process on the cores
for (auto& e : future_vector) {
e.get();
}
这里还有 rayTrace 方法:
Eigen::Vector3f Flyscene::traceRay(int level, Eigen::Vector3f& origin, Eigen::Vector3f& dest, std::vector<std::vector<Tucano::Face>>& boxes, std::vector<std::vector<Eigen::Vector3f>>& boxbounds)
你认为这是为什么?
这是完整的错误描述:
错误(事件)E0433 限定符在“std::vector>、std::allocator>>> &”类型的绑定(bind)引用到“const std::vector>、std::allocator>>> 类型的初始化程序中删除” "光线追踪
错误(事件)E0433 限定符在类型的绑定(bind)引用中丢失“std::vector>, std::allocator>>> &”到类型“const std::vector>, std::allocator>>>”的初始化程序
最佳答案
您需要将 mutable
添加到您的 lambda 中。
vector 通过引用传递(到 traceRay
),因此可以在此函数内修改它们。您的 lambda 通过复制 =
获取 vector (用于捕获),=
捕获的对象只能读取,不能修改它们。
您的代码可以简化为这个例子:
void bar(std::vector<int>& v) {
}
void foo() {
std::vector<int> v;
auto l = [=]() /*mutable*/
{
bar(v); // works only with uncommented mutable
// v can be modified only with mutable
};
l();
}
当您在 lambda 中创建 vector 时,它们不会被捕获,因此您可以在 traceRay
中更改它们。
所以在第一个片段中你添加mutable
:
std::async([=, &origin, &curr_pixel, &pixel_data]() mutable
{ ^^^^^^^
while (true)
{
关于c++ - 错误 : qualifiers dropped in binding reference of type "blah blah" to initialize "some other blah blah",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58573008/
我正在尝试将 keras.initializers 引入我的网络,following this link : import keras from keras.optimizers import RMS
我正在为程序创建某种前端。为了启动程序,我使用了调用 CreateProcess(),其中接收到一个指向 STARTUPINFO 结构的指针。初始化我曾经做过的结构: STARTUPINFO star
我已经模板化了 gray_code 类,该类旨在存储一些无符号整数,其基础位以格雷码顺序存储。这里是: template struct gray_code { static_assert(st
我已经查看了之前所有与此标题类似的问题,但我找不到解决方案。所有错误都表明我没有初始化 ArrayList。我是否没有像 = new ArrayList 这样初始化 ArrayList? ? impo
当涉及到 Swift 类时,我对必需的初始化器和委托(delegate)的初始化器有点混淆。 正如您在下面的示例代码中所见,NewDog 可以通过两种方式中的一种进行初始化。如您所见,您可以通过在初始
几天来我一直在为一段代码苦苦挣扎。我在运行代码时收到的错误消息是: 错误:数组初始值设定项必须是初始值设定项列表 accountStore(int size = 0):accts(大小){} 这里似乎
我想返回一个数组,因为它是否被覆盖并不重要,我的方法是这样的: double * kryds(double linje_1[], double linje_2[]){ double x = linje
尝试在 C++ 中创建一个简单的 vector 时,出现以下错误: Non-aggregates cannot be initialized with initializer list. 我使用的代码
如何在构造函数中(在堆栈上)存储初始化列表所需的临时状态? 例如,实现这个构造函数…… // configabstraction.h #include class ConfigAbstraction
我正在尝试编写一个 native Node 插件,它枚举 Windows 机器上的所有窗口并将它们的标题数组返回给 JS userland。 但是我被这个错误难住了: C:\Program Files
#include using namespace std; struct TDate { int day, month, year; void Readfromkb() {
我很难弄清楚这段代码为何有效。我不应该收到“数组初始值设定项必须是初始值设定项列表”错误吗? #include class B { public: B() { std::cout << "B C
std::map m = { {"Marc G.", 123}, {"Zulija N.", 456}, {"John D.", 369} }; 在 Xcode 中,我将 C+
为了帮助你明白这一点,我给出了我的代码:(main.cpp),只涉及一个文件。 #include #include using namespace std; class test{ public
这在 VS2018 中有效,但在 2008 中无效,我不确定如何修复它。 #include #include int main() { std::map myMap = {
我有一个类: #include class Object { std::shared_ptr object_ptr; public: Object() {} template
我正在为 POD、STL 和复合类型(如数组)开发小型(漂亮)打印机。在这样做的同时,我也在摆弄初始化列表并遇到以下声明 std::vector arr{ { 10, 11, 12 }, { 20,
我正在使用解析实现模型。 这是我的代码。 import Foundation import UIKit import Parse class User { var objectId : String
我正在观看 Java 内存模型视频演示,作者说与 Lazy Initialization 相比,使用 Static Lazy Initialization 更好,我不清楚他说的是什么想说。 我想接触社
如果您查看 Backbone.js 的源代码,您会看到此模式的多种用途: this.initialize.apply(this, arguments); 例如,这里: var Router =
我是一名优秀的程序员,十分优秀!