A potential error of torch.zeros function

Hi, I followed the instructions of that post and found really weird.
I created a file pytorch.py

import torch
seq_length = torch.LongTensor([895])
torch.zeros((69137, seq_length.max(), 13))

When I type python2 pytorch.py in my bash. I got segmentation fault.
While I follow the gdb instruction in that post,
I got

(gdb) run
Starting program: /home/dsk/anaconda2/bin/python2 pytorch.py
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Traceback (most recent call last):
  File "pytorch.py", line 5, in <module>
    torch.zeros((69137, seq_length.max(), 13))

I tried 5 times and all the cases are as I said.
Could you give me more guidance?
Thanks