The pointer should be 64 bits on my virtual machine. After correcting it, I have deployed the Faster R-CNN on VTA. Actually solving this problem, the Faster R-CNN can be supported by VTA. ``` auto data_ptr_tmp = static_cast<int64_t *>(input->data); auto data_ptr = reinterpret_cast<float *>(*data_ptr_tmp); auto sort_num_ptr_tmp = static_cast<int64_t *>(sort_num->data); auto sort_num_ptr = reinterpret_cast<int32_t *>(*sort_num_ptr_tmp); auto output_data_ptr_tmp = static_cast<int64_t *>(output->data); auto output_data_ptr = reinterpret_cast<int32_t *>(*output_data_ptr_tmp); ```
--- [Visit Topic](https://discuss.tvm.ai/t/vta-a-workaround-for-deploying-faster-r-cnn-on-vta/6516/2) to respond. You are receiving this because you enabled mailing list mode. To unsubscribe from these emails, [click here](https://discuss.tvm.ai/email/unsubscribe/d9bb405adb288c728e1f2cfc4d1adb363a93353ca068a91ae6d10873224947f6).