Hello,
When compiling kaolin I got errors due to L166 and L363 in /kaolin/csrc/ops/spc/convolution.cpp.
|
int Qlevel = level; |
|
int Plevel = Qlevel - jump; |
|
int Olevel = pyramid.size(2)-2; |
|
assert(PLevel >= 0); |
|
int Qlevel = level; |
|
int Plevel = Qlevel + jump; |
|
int Olevel = pyramid.size(2)-2; |
|
assert(PLevel <= Olevel); |
Both lines have an assert that references PLevel which is not defined. I assume it should be Plevel? Changing the lines to that fixed the issue for me at least.
Thanks for a great library!
Hello,
When compiling kaolin I got errors due to L166 and L363 in /kaolin/csrc/ops/spc/convolution.cpp.
kaolin/kaolin/csrc/ops/spc/convolution.cpp
Lines 163 to 166 in b47f216
kaolin/kaolin/csrc/ops/spc/convolution.cpp
Lines 360 to 363 in b47f216
Both lines have an
assertthat referencesPLevelwhich is not defined. I assume it should bePlevel? Changing the lines to that fixed the issue for me at least.Thanks for a great library!