docs: fix simple typo, simplier -> simpler

There is a small typo in Samples/matrixMulDrv/matrixMulDrv.cpp.

Should read `simpler` rather than `simplier`.
This commit is contained in:
Tim Gates 2020-12-28 08:56:20 +11:00
parent b882fa00ee
commit be8f98a743
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05

View File

@ -166,7 +166,7 @@ void runTest(int argc, char **argv) {
if (1) {
// This is the new CUDA 4.0 API for Kernel Parameter passing and Kernel
// Launching (simplier method)
// Launching (simpler method)
size_t Matrix_Width_A = (size_t)WA;
size_t Matrix_Width_B = (size_t)WB;
void *args[5] = {&d_C, &d_A, &d_B, &Matrix_Width_A, &Matrix_Width_B};