I'm using CUDF it's part of the rapids ML suite from Nvidia.
Using this suite how would I do a dot product between two DataFrame?
a = cudf.DataFrame([[0.1, 0.2, 0.3, 0.4], [0.1, 0.2, 0.3, 0.4]])
b = cudf.DataFrame([[0.1, 0.2], [0.1, 0.2]])
a.T.dot(b) # It doesn't work, cudf doesn't supprot .dot
e.g. how would I perform a dot product on the above Dataframes?