Skip to content

Commit

Permalink
remove unused header and function
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkichler committed Aug 29, 2024
1 parent 37d1926 commit 748cac6
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions examples/interval/centered.cu
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
#include <cuinterval/format.h>

#include <cutangent/cutangent.cuh>
#include <cutangent/format.h>

#include <iostream>

Expand All @@ -23,11 +22,6 @@ constexpr auto f(auto x)
return 3.0 * pow(x, 3) + pow(x, 2) - 5.0 * x - 1.0;
}

constexpr auto g(auto x, auto y)
{
return x * y;
}

__global__ void centered_form(T *xs, I *res, int n)
{
int i = blockIdx.x * blockDim.x + threadIdx.x;
Expand Down

0 comments on commit 748cac6

Please sign in to comment.