ece459
ece459 copied to clipboard
Fix CUDA sum launch config L22
- fix launch configuration from host code in L22 for starter sum example
- current configuration launches a single thread so will only compute the sum
out[0] = in_x[0] + in_y[0]. - the correct configuration is on the linked example here
- I guess there needs to be more explanation of the launch config with the corrected version though