Concatenating list of variable size tensors

I have two python lists of tensors A and B each of size n.
Each of n tensors is of size (8* 1* Variable* Variable)
I want to combine them into a single list of size n with tensors of size (8* 2* Variable* Variable) without the use of for loop. (Using for loop is breaking the computation graph).
Any possible way out?