无法在本征C ++库中调试张量评估器

时间:2018-06-27 08:00:00

标签: c++ tensorflow eigen tensor

我只是Eigen C ++库的初学者,我试图理解张量方法“ extract_image_patches”中的代码,该方法正在调用“ TensorImagepatchop”文件,但无法调试张量评估器代码。当我在这些代码行之一上保留断点时,它显示为“当前不会找到该断点。没有为该文档加载任何符号'Please see the image

我的主要代码是:

int main(){
Eigen::Tensor<int, 3> t(5,5,3);
t.setConstant(50);
t.extract_image_patches(3, 3, 1, 1, 1, 1, PADDING_SAME);
getchar();
return 0;

}

我正在尝试理解提供的链接中的代码TensorImagepatch.py​​: tensorimagepatch_code

0 个答案:

没有答案