Skip to content

Commit

Permalink
fix: update C function call in example
Browse files Browse the repository at this point in the history
  • Loading branch information
headlessNode committed Sep 24, 2024
1 parent eff87a8 commit fa53e8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ int main( void ) {
const int stride = 2;

// Compute the sum:
double v = c_dapxsum( N, 5.0, x, stride );
double v = stdlib_strided_dapxsum( N, 5.0, x, stride );

// Print the result:
printf( "sum: %lf\n", v );
Expand Down

0 comments on commit fa53e8e

Please sign in to comment.