有没有办法包含所有 Thrust 文件而不是单独执行?例如,现在我必须执行以下操作:
#include <thrust/version.h>
#include <thrust/host_vector.h>
#include <thrust/device_vector.h>
#include <thrust/copy.h>
#include <thrust/fill.h>
#include <thrust/sequence.h>
我只想使用类似的东西
#include <thrust.h>
这可能吗?