### Description ```py A = pt.dmatrix("a", shape=(4,2)) B = pt.dmatrix('b', shape=(3,3)) z = pt.linalg.kron(A, B) z.type.shape #(None, None) ``` I expect `z.type.shape` to be `(12, 6)`, since all input shapes are known