Last active
January 16, 2018 14:23
-
-
Save karino2/93ff66fed8a65425e18decf1cef52763 to your computer and use it in GitHub Desktop.
For screen shot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__global__ void linear(float* x, | |
int numXRows, int numXCols) | |
{ | |
__shared__ float W [TILE_WIDTH][TILE_WIDTH]; | |
__shared__ float b [TILE_WIDTH][TILE_WIDTH]; | |
// x*W+b | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment