{"id":18421939,"url":"https://github.com/spcl/dace-vscode","last_synced_at":"2025-04-07T14:32:06.213Z","repository":{"id":36999267,"uuid":"261135577","full_name":"spcl/dace-vscode","owner":"spcl","description":"Rich editor for SDFGs with included profiling and debugging, static analysis, and interactive optimization.","archived":false,"fork":false,"pushed_at":"2024-10-31T11:08:55.000Z","size":11606,"stargazers_count":19,"open_issues_count":24,"forks_count":10,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-10-31T11:17:23.274Z","etag":null,"topics":["vscode","vscode-extension"],"latest_commit_sha":null,"homepage":"https://marketplace.visualstudio.com/items?itemName=phschaad.sdfv","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spcl.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-04T09:48:46.000Z","updated_at":"2024-10-31T11:08:59.000Z","dependencies_parsed_at":"2023-10-10T18:12:11.750Z","dependency_job_id":"d0906174-80e6-40fd-a34c-95dc71e08274","html_url":"https://github.com/spcl/dace-vscode","commit_stats":{"total_commits":311,"total_committers":10,"mean_commits":31.1,"dds":0.2186495176848875,"last_synced_commit":"7b4220390ca3fa67d119d22aa4ec4d627c397abb"},"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spcl%2Fdace-vscode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spcl%2Fdace-vscode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spcl%2Fdace-vscode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spcl%2Fdace-vscode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spcl","download_url":"https://codeload.github.com/spcl/dace-vscode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223283917,"owners_count":17119575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["vscode","vscode-extension"],"created_at":"2024-11-06T04:27:22.812Z","updated_at":"2024-11-06T04:27:23.422Z","avatar_url":"https://github.com/spcl.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DaCe SDFG Editor for Visual Studio Code\n\n[![](https://vsmarketplacebadges.dev/version-short/phschaad.sdfv.png\n)](https://marketplace.visualstudio.com/items?itemName=phschaad.sdfv)\n[![](https://vsmarketplacebadges.dev/installs-short/phschaad.sdfv.png\n)](https://marketplace.visualstudio.com/items?itemName=phschaad.sdfv)\n[![](https://vsmarketplacebadges.dev/downloads-short/phschaad.sdfv.png\n)](https://marketplace.visualstudio.com/items?itemName=phschaad.sdfv)\n[![](https://vsmarketplacebadges.dev/rating-short/phschaad.sdfv.png\n)](https://marketplace.visualstudio.com/items?itemName=phschaad.sdfv)\n\nThis Visual Studio Code extension provides a rich editor for\n[SDFGs](http://spcl.inf.ethz.ch/dace/) with included profiling and\ndebugging, static analysis, and interactive optimization.\n\n# Features\n\n## SDFG Editor\n\nThe SDFG editor allows changing of all editable SDFG properties and elements.\nTo allow for easier exploration of large graphs, most graph elements can be\ncollapsed into a smaller, more compact representation. A number of viewing\noptions, like the hiding of access nodes, can further assist with the editing\nof larger graphs.\n\n![sdfg-editor-example](images/sdfg_editor.gif)\n\n## SDFG Optimization / Transformations\n\nWith the SDFG Editor, data-centric applications can be optimized interactively using transformations.\n\n- A set of applicable performance optimizing transformations is shown in a\n  sorted list in the side panel for each valid SDFG program.\n- A description provides more information about each transformation.\n- Transformations can be previewed before applying them to the SDFG.\n- The transformation history allows easy undoing/redoing of specific\n  optimization steps.\n\n\u003cbr\u003e\n\n![sdfg-optimization-example](images/sdfg_optimization.gif)\n\n## Static Analysis\n\nSDFGs can be statically analyzed for memory or compute bottlenecks using a\nseries of overlays, which highlight the number of arithmetic operations or the\namount of memory moved per graph element.\n\n![sdfg-analysis-example](images/analysis.gif)\n\n## Debugging\n\nSDFGs can be run with a debugger, allowing the setting of breakpoints on the\ngraph. For this purpose, the extension will install the\n[Python / C++ Debugger](https://marketplace.visualstudio.com/items?itemName=benjamin-simmonds.pythoncpp-debug)\nextension.\n\n![debugging-example](images/debugging.gif)\n\n## Profiling\n\nA built-in profiling run configuration allows SDFG programs to be run multiple\ntimes\u003csup\u003e1\u003c/sup\u003e while recording the median runtime for each execution. This\nmedian runtime is then reported back to you. Additionally, individual graph\nelements can be instrumented with timers, which generates a detailed profiling\nreport after an SDFG's execution. This report can be loaded in an displayed via\noverlay on top of the SDFG.\n\n\u003csup\u003e1\u003c/sup\u003e The number of executions per profiling run can be configured in\nthe `.dace.config`. This can be opened by typing `Open .dace.config` into the\ncommand bar.\n\n\n## Building SDFGs\n\nGraph elements can be dynamically added and moved around, allowing the creation\nof entire SDFGs from scratch.\n\n![sdfg-editor-adding-elements-example](images/sdfg_adding_elements.gif)\n\n# Questions, Issues, Feature Requests, and Contributions\n\nIf you have questions about how to achieve something with the extension, want\nto report an issue, or request a new feature, please use the\n[issues page](https://github.com/spcl/dace-vscode/issues) on GitHub.\nContributions are always welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspcl%2Fdace-vscode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspcl%2Fdace-vscode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspcl%2Fdace-vscode/lists"}