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 368 B

12345678910111213141516171819
  1. #include "test/common/powc.h"
  2. #include "test/rocm/fixture.h"
  3. using namespace megdnn;
  4. using namespace test;
  5. TEST_F(ROCM, POW_C_F32) {
  6. run_powc_test(handle_rocm(), dtype::Float32{});
  7. }
  8. #if !MEGDNN_DISABLE_FLOAT16
  9. //! FIXME: powc for rocm has bugs
  10. TEST_F(ROCM, POW_C_F16) {
  11. run_powc_test(handle_rocm(), dtype::Float16{});
  12. }
  13. #endif
  14. // vim: syntax=cpp.doxygen