We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c1bf92 commit e8a6a7aCopy full SHA for e8a6a7a
1 file changed
Sources/OpenAttributeGraphShims/GraphShims.swift
@@ -26,12 +26,20 @@ extension Subgraph {
26
}
27
28
extension Graph {
29
+ public static func startProfiling() {
30
+ startProfiling(nil)
31
+ }
32
+
33
+ public static func stopProfiling() {
34
+ stopProfiling(nil)
35
36
37
public func startProfiling() {
- // TODO: placeholder
38
+ Self.startProfiling(self)
39
40
41
public func stopProfiling() {
42
+ Self.stopProfiling(self)
43
44
45
public func resetProfile() {
0 commit comments