Is it possible to view values of a at::Tensor in Visual codes debug variable view (linux)?

Hi!

I am currently learning about libtorch, c++ and visual code and wonder if someone knows if it is possible nicely debug libtorch inside visual code?

Essentially what I am after is to view the values of an at::Tensor in Visual codes debug variable view similar to how a torch.tensor can be viewed using the python plugin. Currently when I try to debug a simple program linking libtorch.so a basic at::Tensor (x) looks like below in the editor:
example

Hello,

Something like *(float_t*)x.data_ptr()@size ?

Pascal