Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
chore: Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
KuangjuX committed Feb 19, 2024
1 parent 0b1fd3d commit 91b53cb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/figures/.$Shared_GEMM_Graph.drawio.bkp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<mxfile host="Electron" modified="2024-02-13T03:19:00.395Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/23.0.2 Chrome/120.0.6099.109 Electron/28.1.0 Safari/537.36" etag="NAMpvSVRMFEshmiLQifY" version="23.0.2" type="device">
<mxfile host="Electron" modified="2024-02-13T03:24:21.691Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/23.0.2 Chrome/120.0.6099.109 Electron/28.1.0 Safari/537.36" etag="V5vJ44NeCS2_93IH_zMb" version="23.0.2" type="device">
<diagram name="第 1 页" id="v4g-L3-ZHjjAc5xld4gs">
<mxGraphModel dx="2074" dy="1267" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
Expand All @@ -25,7 +25,7 @@
<mxCell id="qrEGvLMcKR_sBZyC1PwX-7" value="&lt;font style=&quot;font-size: 15px;&quot;&gt;sB&lt;/font&gt;" style="shape=ellipse;html=1;dashed=0;whiteSpace=wrap;aspect=fixed;perimeter=ellipsePerimeter;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="430" y="350" width="50" height="50" as="geometry" />
</mxCell>
<mxCell id="qrEGvLMcKR_sBZyC1PwX-9" value="&lt;font style=&quot;font-size: 15px;&quot;&gt;shm&lt;/font&gt;" style="shape=ellipse;html=1;dashed=0;whiteSpace=wrap;aspect=fixed;perimeter=ellipsePerimeter;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxCell id="qrEGvLMcKR_sBZyC1PwX-9" value="&lt;span style=&quot;font-size: 15px;&quot;&gt;sC&lt;/span&gt;" style="shape=ellipse;html=1;dashed=0;whiteSpace=wrap;aspect=fixed;perimeter=ellipsePerimeter;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="350" y="830" width="50" height="50" as="geometry" />
</mxCell>
<mxCell id="qrEGvLMcKR_sBZyC1PwX-10" value="" style="endArrow=classic;html=1;rounded=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#E22C2C;strokeWidth=2;" edge="1" parent="1" source="qrEGvLMcKR_sBZyC1PwX-6">
Expand Down
2 changes: 1 addition & 1 deletion docs/figures/Shared_GEMM_Graph.drawio
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<mxfile host="Electron" modified="2024-02-13T03:24:21.691Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/23.0.2 Chrome/120.0.6099.109 Electron/28.1.0 Safari/537.36" etag="V5vJ44NeCS2_93IH_zMb" version="23.0.2" type="device">
<mxfile host="Electron" modified="2024-02-19T04:27:27.545Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/23.0.2 Chrome/120.0.6099.109 Electron/28.1.0 Safari/537.36" etag="a9NL-LHXny9CaivApz4L" version="23.0.2" type="device">
<diagram name="第 1 页" id="v4g-L3-ZHjjAc5xld4gs">
<mxGraphModel dx="2074" dy="1267" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
Expand Down
Binary file modified docs/figures/Shared_GEMM_Graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 1 addition & 5 deletions src/generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -79,16 +79,12 @@ namespace tiledkernel {
for (auto node : rf_nodes) {
auto graph = std::get<TiledGraph::Pointer>(node->getData());
auto sorted_nodes = graph->topoSort();
logd("ID\tName");
#ifdef DEBUG
fmt::println("[DEBUG] ID\tName");
#endif
for (auto node : sorted_nodes) {
logd("{}\t{}", node->id.value(), node->name);
#ifdef DEBUG
fmt::println("[DEBUG] {}\t{}", node->id.value(), node->name);
#endif
}
#endif
kernel += emit_rf_cute(graph);
}
kernel += "__syncthreads();\n";
Expand Down

0 comments on commit 91b53cb

Please sign in to comment.