web-dev-qa-db-ja.com

CUDAおよびC ++ 11の使用中にエラーが発生しました

私はCUDA4.1とGCC4.5を使用しています...(ついに!CUDAはGCC 4.5をサポートしますが、それでもGCC 4.6を待っています)。とにかく、CUDA4.1でC++ 11を使用することは可能ですか?

私は合格しようとしました:

--compiler-options "-std=c++0x"

nvccにすると、私にたくさんのエラーがスローされます。

/usr/include/c++/4.5/exception_ptr.h(100): error: copy constructor for class "std::__exception_ptr::exception_ptr" may not have a parameter of type "std::__exception_ptr::exception_ptr"

/usr/include/c++/4.5/exception_ptr.h(100): error: expected a ")"

/usr/include/c++/4.5/exception_ptr.h(110): error: expected a ")"

/usr/include/c++/4.5/exception_ptr.h(132): error: identifier "type_info" is undefined

/usr/include/c++/4.5/exception_ptr.h(101): error: identifier "__o" is undefined

/usr/include/c++/4.5/exception_ptr.h(112): error: expected a ">"

/usr/include/c++/4.5/exception_ptr.h(112): error: identifier "__o" is undefined

/usr/include/c++/4.5/nested_exception.h(62): error: expected a ";"

/usr/include/c++/4.5/nested_exception.h(64): error: expected a ";"

/usr/include/c++/4.5/nested_exception.h(77): error: member function "std::nested_exception::~nested_exception" may not be redeclared outside its class

/usr/include/c++/4.5/nested_exception.h(77): error: function "std::<error>" may not be initialized

/usr/include/c++/4.5/nested_exception.h(77): error: expected an expression

/usr/include/c++/4.5/nested_exception.h(82): error: expected a ")"

/usr/include/c++/4.5/nested_exception.h(110): error: expected a ")"

/usr/include/c++/4.5/nested_exception.h(115): error: expected a ")"

/usr/include/c++/4.5/nested_exception.h(122): error: expected a ")"

/usr/include/c++/4.5/nested_exception.h(127): error: expected a ")"

/usr/include/c++/4.5/nested_exception.h(127): error: function template "std::__throw_with_nested" has already been defined

/usr/include/c++/4.5/bits/cpp_type_traits.h(180): error: identifier "char16_t" is undefined

/usr/include/c++/4.5/bits/cpp_type_traits.h(187): error: identifier "char32_t" is undefined

/usr/include/c++/4.5/bits/cpp_type_traits.h(187): error: class "std::__is_integer<<error-type>>" has already been defined

21 errors detected in the compilation of "/tmp/tmpxft_00000ef2_00000000-4_test_cuda.cpp1.ii".

Test.cuの例

#include <cuda.h>

__Host__ void test() {
  // nothing in method
}

次のコマンドで正常にコンパイルされます。

nvcc -c -o test.o test.cu

しかし、C++ 0xではありません

nvcc -c -o test.o test.cu --compiler-options "-std=c++0x"
24
user988098

@Jared Hoberockが投稿した別のメッセージに基づく回答の更新 ThrustのGoogleグループ :C++ 11サポートがCUDA6.5に追加されたようです(まだ実験的で文書化されていませんが)。

ダミーの例:test.cu

#include <cuda.h>
#include <iostream>

__Host__ void test() {
  float a = 12.;
  double b = 3.;
  auto c = a * b;
  std::cout << c << std::endl;
}

int main()
{
  test();
  return 0;
}

コンパイルと実行

$ nvcc -std=c++11 test.cu -o test
$ ./test
36

-std=c++11がないと、次の(予期される)エラーが発生します。

test.cu(7): error: explicit type is missing ("int" assumed)

注:この例は、 GCC 5.1 でコンパイルできない場合があります。

更新

CUDA 7.0 公式に C++ 11サポートが導入されました:

CUDA 7は、CUDA C++コンパイラであるnvccにC++ 11機能のサポートを追加します。これは、nvccでコンパイルされたホストコードだけでなく、デバイスコードでもC++ 11機能を使用できることを意味します。新しいC++言語機能には、自動、ラムダ関数、可変個引数テンプレート、static_assert、右辺値参照、範囲ベースのforループなどが含まれます。 C++ 11のサポートを有効にするには、フラグ--std = c ++ 11をnvccに渡します(このオプションはMicrosoft Visual Studioでは必要ありません)。

11
BenC