Skip to content
Snippets Groups Projects
Commit 4c9aa867 authored by Yichao Yu's avatar Yichao Yu
Browse files

print string

parent d71d960b
No related branches found
No related tags found
No related merge requests found
#include "debug.h" #include "debug.h"
#include <iostream>
#include <stdlib.h> #include <stdlib.h>
namespace pyopencl { namespace pyopencl {
void
dbg_print_str(std::ostream &stm, const char *str, size_t len)
{
// TODO escape
stm << '"';
stm.write(str, len);
stm << '"';
}
static PYOPENCL_INLINE bool static PYOPENCL_INLINE bool
_get_debug_env() _get_debug_env()
{ {
......
#include "wrap_cl.h" #include "wrap_cl.h"
#include "utils.h" #include "function.h"
#include <string.h>
#ifndef __PYOPENCL_DEBUG_H #ifndef __PYOPENCL_DEBUG_H
#define __PYOPENCL_DEBUG_H #define __PYOPENCL_DEBUG_H
...@@ -15,6 +16,13 @@ extern bool debug_enabled; ...@@ -15,6 +16,13 @@ extern bool debug_enabled;
#define DEBUG_ON (PYOPENCL_EXPECT(debug_enabled, DEFAULT_DEBUG)) #define DEBUG_ON (PYOPENCL_EXPECT(debug_enabled, DEFAULT_DEBUG))
void dbg_print_str(std::ostream&, const char*, size_t);
static PYOPENCL_INLINE void
dbg_print_str(std::ostream &stm, const char *str)
{
return dbg_print_str(stm, str, strlen(str));
}
} }
#endif #endif
#include "wrap_cl.h" #include "wrap_cl.h"
#include "pyhelper.h" #include "pyhelper.h"
#include "clobj.h" #include "clobj.h"
#include "debug.h"
#include <string.h> #include <string.h>
#include <stdexcept> #include <stdexcept>
......
#include "wrap_cl.h" #include "wrap_cl.h"
#include "function.h" #include "function.h"
#include "debug.h"
#include <string> #include <string>
#include <sstream> #include <sstream>
...@@ -83,10 +84,7 @@ template<> ...@@ -83,10 +84,7 @@ template<>
PYOPENCL_INLINE void PYOPENCL_INLINE void
_print_buf_content<char>(std::ostream &stm, const char *p, size_t len) _print_buf_content<char>(std::ostream &stm, const char *p, size_t len)
{ {
// TODO escape dbg_print_str(stm, p, len);
stm << '"';
stm.write(p, len);
stm << '"';
} }
template<typename T> template<typename T>
...@@ -164,7 +162,7 @@ struct CLGenericArgPrinter< ...@@ -164,7 +162,7 @@ struct CLGenericArgPrinter<
static PYOPENCL_INLINE void static PYOPENCL_INLINE void
print(std::ostream &stm, const char *str) print(std::ostream &stm, const char *str)
{ {
_print_buf_content<char>(stm, str, strlen(str)); dbg_print_str(stm, str);
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment