I am attempting to use aarch64-linux-gnu target with (CPU and Nvidia’s GPU on remote device). CPU is identified from RPC session but not the same for GPU.
ctx = remote.gpu() print(ctx.exist) False ctx = remote.cpu() print(ctx.exist) True ctx = remote.gpu(1) print(ctx.exist) False ctx = remote.gpu(0) print(ctx.exist) False