Revision 5902acdabc4445a65741a7a6a3a95f223e301059 authored by Yong He on 23 January 2024, 07:19:40 UTC, committed by GitHub on 23 January 2024, 07:19:40 UTC
1 parent fec9c42
Raw File
test-intrinsics.slang
//TEST_IGNORE_FILE:

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

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