summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/StaticRuntimePlusToolkit/mixed.cpp
blob: a05140d4abd3df006f3deae2bd1b8ca2fb217747 (plain)
1
2
3
4
5
6
7
8

int curand_main();
int nppif_main();

int mixed_version()
{
  return curand_main() == 0 && nppif_main() == 0;
}