summaryrefslogtreecommitdiffstats
path: root/tests/autodiff/test-intrinsics.slang
blob: 189004543f86378a3787f114bc38ad0f619f6008 (plain)
1
2
3
4
5
6
7
8
9
10
11
//TEST_IGNORE_FILE:

float pow_(float x, float n)
{
    return pow(x, n);
}

float max_(float x, float y)
{
    return max(x, y);
}