Skip to content

Commit

Permalink
[docs] Fix diagram rendering on C API reference page. (#19586)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottTodd authored Jan 2, 2025
1 parent 88848b4 commit fc6c518
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions docs/website/docs/reference/bindings/c-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ graph TD
C API's exported symbols.
}
subgraph compiler[libIREECompiler.so / IREECompiler.dll]
subgraph compiler[libIREECompiler.so]
pipelines("Pipelines
• Flow
Expand Down Expand Up @@ -95,10 +95,13 @@ stateDiagram-v2
InputBuffer --> Source2 : wrap buffer
state Session {
Invocation1: Invocation1<br>(run pipelines on this)
Source1 --> Invocation1
--
Invocation2: Invocation2<br>(run pipelines on this)
Source2 --> Invocation2
Invocation1 --> Invocation1 : run pipeline
Invocation2 --> Invocation2 : run pipeline
}
Invocation1 --> Output1File : write file
Expand Down Expand Up @@ -238,29 +241,25 @@ API.
subgraph iree_runtime[IREE Runtime]
subgraph base
base_types("Types
• allocator
• status
• etc.")
end
subgraph hal[HAL]
hal_types("Types
• buffer
• device
• etc.")
hal_drivers("Drivers
• local-*
• vulkan
• etc.")
end
subgraph vm[VM]
vm_types("Types
• context
• invocation
• etc.")
Expand Down Expand Up @@ -292,36 +291,31 @@ API.
subgraph iree_runtime[IREE Runtime]
subgraph base
base_types("Types
• allocator
• status
• etc.")
end
subgraph hal[HAL]
hal_types("Types
• buffer
• device
• etc.")
hal_drivers("Drivers
• local-*
• vulkan
• etc.")
end
subgraph vm[VM]
vm_types("Types
• context
• invocation
• etc.")
end
runtime_api("Runtime API
• instance
• session
• call")
Expand Down

0 comments on commit fc6c518

Please sign in to comment.