We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0551fc5 commit 62db3b3Copy full SHA for 62db3b3
tsl/profiler/lib/context_types.cc
@@ -52,6 +52,8 @@ const char* GetContextTypeString(ContextType context_type) {
52
return "threadpool_event";
53
case ContextType::kJaxServingExecutor:
54
return "jax_serving";
55
+ case ContextType::kScOffload:
56
+ return "sparsecore_offload";
57
}
58
59
tsl/profiler/lib/context_types.h
@@ -39,7 +39,8 @@ enum class ContextType : int {
39
kPjrtLibraryCall,
40
kThreadpoolEvent,
41
kJaxServingExecutor,
42
- kLastContextType = ContextType::kJaxServingExecutor,
+ kScOffload,
43
+ kLastContextType = ContextType::kScOffload,
44
};
45
46
// In XFlow we encode context type as flow category as 6 bits.
0 commit comments