gpt4 book ai didi

c++ - 为什么使用 boost::none 无法通过 nvcc 进行编译?

转载 作者:行者123 更新时间:2023-11-30 04:52:06 25 4
gpt4 key购买 nike

我正在尝试编译以下代码:

#include <boost/optional.hpp>
void foo(boost::optional<unsigned> x = boost::none);

放在a.cu文件中,使用CUDA编译器,使用如下命令行:

nvcc a.cu -c --std=c++11 -I/opt/boost/include

但是我得到了一堆错误:

a.cu:2:53: error: conversion from ‘const boost::none_t(boost::none_t::init_tag (*)())’ to ‘boost::optional<unsigned int>’ is ambiguous
void foo(boost::optional<unsigned> x = boost::none);
^
/opt/boost/include/boost/optional/optional.hpp:805:1: note: candidate: boost::optional<T>::optional(boost::optional<T>::rval_reference_type) [with T = unsigned int; boost::optional<T>::rval_reference_type = unsigned int&&] <near match>
optional ( rval_reference_type val ) : base( boost::forward<T>(val) )
^ ~~~~
/opt/boost/include/boost/optional/optional.hpp:805:1: note: conversion of argument 1 would be ill-formed:
a.cu:2:53: error: invalid conversion from ‘const boost::none_t (*)(boost::none_t::init_tag (*)())’ to ‘unsigned int’ [-fpermissive]
void foo(boost::optional<unsigned> x = boost::none);
^
/opt/boost/include/boost/optional/optional.hpp:800:1: note: candidate: boost::optional<T>::optional(boost::optional<T>::argument_type) [with T = unsigned int; boost::optional<T>::argument_type = const unsigned int&] <near match>
optional ( argument_type val ) : base(val) {}
^ ~~~~
/opt/boost/include/boost/optional/optional.hpp:800:1: note: conversion of argument 1 would be ill-formed:
a.cu:2:53: error: invalid conversion from ‘const boost::none_t (*)(boost::none_t::init_tag (*)())’ to ‘unsigned int’ [-fpermissive]
void foo(boost::optional<unsigned> x = boost::none);

为什么会发生这种情况,我可以在使用 nvcc 编译的(主机端)代码中实际使用 boost::optional 的同时规避这个问题吗?

附加信息:

  • 代码在 g++ 6.3.0(我的发行版的编译器)下编译良好。
  • 这段代码(或者更确切地说,类似的代码)用于在我使用的早期 Linux 发行版上进行编译和工作,其中的编译器是 g++ 5.4.x。
  • 我已经在 Boost 版本 1.65.1 和 1.69.0 上试过了。
  • 我已经在 CUDA 版本 9.2.88 和 10.0.130 上试过了。

最佳答案

我遇到了完全相同的错误,并且能够通过此修改使其正常工作:

    #define BOOST_OPTIONAL_USE_OLD_DEFINITION_OF_NONE
#include <boost/optional.hpp>

这是使用 CUDA 10.0.130、g++ 7.3.0 和 Boost 1.68.0。

关于c++ - 为什么使用 boost::none 无法通过 nvcc 进行编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54611222/

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