-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add pybind11 wrapper for callprofiler
remove unwanted checkin callprofiler driver code clang-format clang-format clang-format RadixTree flake8 floating number skip windows timeing test fix typo fix conflict wrap CallProfilerProbe wrap CallProfilerProbe profliing result in python dict profliing result in python dict add jsonschema assertGreaterEqual add MODMESH_PYTHON_WRAPPER_VISIBILITY busy loop fix flake8 use perf_counter flake8 jsonschema missing jsonschema
- Loading branch information
Showing
9 changed files
with
343 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"name": {"type": "string"}, | ||
"total_time": {"type": "number"}, | ||
"count": {"type": "integer"}, | ||
"current_node": {"type": "boolean"}, | ||
"children": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": {"type": "string"}, | ||
"total_time": {"type": "number"}, | ||
"count": {"type": "integer"}, | ||
"children": { | ||
"type": "array", | ||
"items": {"$ref": "#/definitions/child"} | ||
} | ||
}, | ||
"required": ["name", "total_time", "count", "children"] | ||
} | ||
} | ||
}, | ||
"required": ["name", "total_time", "count", "current_node", "children"], | ||
"definitions": { | ||
"child": { | ||
"type": "object", | ||
"properties": { | ||
"name": {"type": "string"}, | ||
"total_time": {"type": "number"}, | ||
"count": {"type": "integer"}, | ||
"children": { | ||
"type": "array", | ||
"items": {"$ref": "#/definitions/child"} | ||
} | ||
}, | ||
"required": ["name", "total_time", "count", "children"] | ||
} | ||
} | ||
} |
Oops, something went wrong.