na396 / fastGCN

fastGCN is a novel design for graph convolutional neural network that utilizes the spectral embedding of the adjacency matrix.
1 stars 0 forks source link

vectorize #2

Open na396 opened 7 months ago

na396 commented 7 months ago

What - description of what you me to do Example: Hey @autopilot implement a Google sign-in on my website. Make changes to the front end and the back end of the application

Why - explain why this is important Example: I want to allow users to signup and login using their Google account

Hey @autopilot vectorized this

for j in range(Y.size(1)): x = Y[:, j] Y[:, j] = x / torch.sqrt(torch.matmul(torch.mul(x, deg), x))

na396 commented 7 months ago

I want to vectorize this because of my research