Fast Multplication of all Tensors in a list

Hi all,

I have a list of tensors [A_1, A_2, … A_n] where the tensors are conformable but of different sizes. n can be large n > 100. Is there a fast way to multiply A_1 x A_2 x A_3 … A_n without using a for loop or reduce? I am aware of torch multidot, but I also need batching.

Thanks!