1
0

OpenClCode.h 401 B

12345678910111213141516171819
  1. #ifndef MANDEL_OPENCLCODE_H
  2. #define MANDEL_OPENCLCODE_H
  3. #include <string>
  4. namespace mnd
  5. {
  6. std::string getFloat_cl();
  7. std::string getDouble_cl();
  8. std::string getDoubleFloat_cl();
  9. std::string getDoubleDouble_cl();
  10. std::string getQuadDouble_cl();
  11. std::string getFixed64_cl();
  12. std::string getFixed128_cl();
  13. std::string getFixed512_cl();
  14. }
  15. #endif // MANDEL_OPENCLCODE_H