zhangnuc

Results 2 issues of zhangnuc

I read the code tell me the prefetch specified by dataloader can only select **all** the src nodes of the first layer GNN of the preloaded blocks. I want to...

(b) int *const p2 = &i2; 应该是不合法的。 我自己代码尝试了一下,会返回报错“error: cannot initialize a variable of type 'int *const' with an rvalue of type 'const int * “ 我理解的原因是由于i2是一个常量,而常亮的地址只能被存放在 指向常量的指针中。p2是一个常量指针,而非 指向常量的指针。