You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

powc.cpp 334 B

123456789101112131415161718
  1. #include "test/common/powc.h"
  2. #include "test/cuda/fixture.h"
  3. using namespace megdnn;
  4. using namespace test;
  5. TEST_F(CUDA, POW_C_F32) {
  6. run_powc_test(handle_cuda(), dtype::Float32{});
  7. }
  8. #if !MEGDNN_DISABLE_FLOAT16
  9. TEST_F(CUDA, POW_C_F16) {
  10. run_powc_test(handle_cuda(), dtype::Float16{});
  11. }
  12. #endif
  13. // vim: syntax=cpp.doxygen