Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pyopencl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Andreas Klöckner
pyopencl
Commits
4c9aa867
Commit
4c9aa867
authored
10 years ago
by
Yichao Yu
Browse files
Options
Downloads
Patches
Plain Diff
print string
parent
d71d960b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/c_wrapper/debug.cpp
+10
-0
10 additions, 0 deletions
src/c_wrapper/debug.cpp
src/c_wrapper/debug.h
+9
-1
9 additions, 1 deletion
src/c_wrapper/debug.h
src/c_wrapper/error.h
+0
-1
0 additions, 1 deletion
src/c_wrapper/error.h
src/c_wrapper/utils.h
+3
-5
3 additions, 5 deletions
src/c_wrapper/utils.h
with
22 additions
and
7 deletions
src/c_wrapper/debug.cpp
+
10
−
0
View file @
4c9aa867
#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
()
{
{
...
...
This diff is collapsed.
Click to expand it.
src/c_wrapper/debug.h
+
9
−
1
View file @
4c9aa867
#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
This diff is collapsed.
Click to expand it.
src/c_wrapper/error.h
+
0
−
1
View file @
4c9aa867
#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>
...
...
This diff is collapsed.
Click to expand it.
src/c_wrapper/utils.h
+
3
−
5
View file @
4c9aa867
#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
);
}
}
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment