Recently I clone ATen and build ATen from scratch. I follow the common cmake convension and build ATen with VS 2015 x64. However, I start to use ATen in my project, compiling and linking are both successful, but statements like:
Both rc and rg are not fully initialized. If I set rc[0][0] = 0.0f, or rg.fill_(0.0), I will get runtime error that _type in pimp of Tensor is 0x0000000000000000 or 0xffffffffffffffff. The execution failed.
I try to build with and without CUDA, or with many different commits, the problem persists.
Would you mind help me to identify which step I did not done correctly?
Hi all,
Recently I clone ATen and build ATen from scratch. I follow the common cmake convension and build ATen with VS 2015 x64. However, I start to use ATen in my project, compiling and linking are both successful, but statements like:
Both rc and rg are not fully initialized. If I set
rc[0][0] = 0.0f
, orrg.fill_(0.0)
, I will get runtime error that_type
inpimp
of Tensor is0x0000000000000000
or0xffffffffffffffff
. The execution failed.I try to build with and without CUDA, or with many different commits, the problem persists.
Would you mind help me to identify which step I did not done correctly?
Thank you!