代码拉取完成,页面将自动刷新
#ifndef PSA3_LIBRARY_CUH
#define PSA3_LIBRARY_CUH
#include "error.cuh"
struct colwid {
int x;//行
int y;//列
// colwid(){
// x=0;
// y=0;
// };
// __device__ colwid(){
// x=0;
// y=0;
// };
////
// __host__ colwid(int x, int y){
// this->x = x;
// this->y = y;
// }
//
// __host__ colwid(colwid const &c){
// x=c.x;y=c.y;
// }
};
class rsl{
public:
rsl() {
size = 0;
}
//size对应迭代步数
size_t size;
//下面三个数组依次存放每一次迭代选择的列号和行号
size_t* vecIdx;
size_t* idx1;
size_t* idx2;
//总的减小值
int temgrow;
rsl(size_t size){
cudaMallocManaged(&vecIdx,sizeof(size_t)*size);
cudaMallocManaged(&idx1,sizeof(size_t)*size);
cudaMallocManaged(&idx2,sizeof(size_t)*size);
int temgrow = 0;
}
~rsl(){
cudaFree(vecIdx);
cudaFree(idx1);
cudaFree(idx2);
}
};
#endif //PSA3_LIBRARY_CUH
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。