我试图使用推力来减少某些数据,但在编译时我收到很多关于数据可能转换丢失的警告
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.5\include\thrust/system/cuda/detail/cuda_launch_config.h(338) : see reference to function template instantiation 'size_t thrust::system::cuda::detail::block_size_with_maximum_potential_occupancy<thrust::system::cuda::detail::cuda_launch_config_detail::util::zero_function<T>>(const thrust::system::cuda::detail::function_attributes_t &,const thrust::system::cuda::detail::device_properties_t &,UnaryFunction)' being compiled
1> with
1> [
1> T=size_t,
1> UnaryFunction=thrust::system::cuda::detail::cuda_launch_config_detail::util::zero_function<size_t>
1> ]
1>C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.5\include\thrust/system/cuda/detail/cuda_launch_config.h(147): warning C4267: 'return' : conversion from 'size_t' to 'int', possible loss of data
1> C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.5\include\thrust/system/cuda/detail/cuda_launch_config.h(159) : see reference to function template instantiation 'L thrust::system::cuda::detail::cuda_launch_config_detail::util::divide_ri<L,R>(const L,const R)' being compiled
1> with
1> [
1> L=int,
1> R=size_t
1> ]
1> C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.5\include\thrust/system/cuda/detail/cuda_launch_config.h(272) : see reference to function template instantiation 'L thrust::system::cuda::detail::cuda_launch_config_detail::util::round_i<L,size_t>(const L,const R)' being compiled
1> with
1> [
1> L=int,
1> R=size_t
1> ]
我知道那些是警告,但它们真的很烦人,有什么办法可以关掉这些吗?
答案 0 :(得分:1)
您可以使用#pragma warning (disable : 4267)
我假设。但是,如果您没有令人信服的理由不这样做,我会修改代码。
size_t
和int
不是一回事。现在可能对你有用的东西最终可能会在你不想被咬的地方咬你。例如,请参阅"Why size_t matters"。
答案 1 :(得分:1)
这是两年后,问题仍然存在。我已经弄清楚这里发生了什么,并找到了解决方案。
首先,重申问题。如果您创建一个全新的CUDA项目(我正在使用CUDA 7.5和Visual Studio 2013)并简单地输入:
#include <thrust/device_vector.h>
int main()
{
thrust::device_vector<int> test;
return 0;
}
然后将项目切换到64位(将配置更改为x64,将编译器更改为64代码生成),从Thrust中收到多个警告,抱怨转换丢失从size_t
到{{1 }}。这些警告都来自Thrust int
包含文件(至少今天)。
在该文件中,有几种情况,execution_policy.hpp
类型定义为size_type
,后来用作int
数据的等效或返回值。这解释了警告。在MSVC 64位陆地中,size_t
的大小是size_t
的2倍。
作为测试,我改变了几个实例:
int
在typedef int size_type;
中:
execution_policy.hpp
并且所有警告都消失了。
我现在要去Thrust github项目并提出这样的改变。
希望这对某人有所帮助,这让我疯狂。