Is torch-hdf5 supported on TX2?

Hello,
I want to know whether torch-hdf5 can be installed on TX2? I can success install it on X86 architecture by the instruction: sudo luarocks make hdf5-0-0.rockspec LIBHDF5_LIBDIR=”/usr/lib/x86_64-linux-gnu/”.
But on TX2,I change the instruction: sudo luarocks make hdf5-0-0.rockspec LIBHDF5_LIBDIR=”/usr/lib/aarch64-linux-gnu/”,it errors:
Missing dependencies for hdf5:
torch>=7.0
penlight
totem

Error:Could not satisfy dependency:torch>=7.0
However I have already install the torch 7.0 on TX2,while the totem is also the newest version.
When I installed it on Titan X, it didn’t have such error.So I want to know whether torch-hdf5 is suppored on TX2?
Thanks.Waiting for your reply.

Hi,

It looks like there is some issue with the installation of torch 7.0.
Could you verify the torch package and version you installed first?

Here is the command for torch 7.0 for your reference:
[url]jetson-reinforcement/CMakePreBuild.sh at master · dusty-nv/jetson-reinforcement · GitHub
Thanks.

Hi,
Thanks for repyling,but I’m sure that I have installed torch7:

Hi,

Could you try following commands?

cd ~/torch
bash install-deps
./install.sh
source ~/.bash_profile

Thanks.