{"id":27218635,"url":"https://github.com/voyrox/dynamic-scheduling","last_synced_at":"2026-02-05T22:01:29.805Z","repository":{"id":249786109,"uuid":"832551830","full_name":"Voyrox/Dynamic-Scheduling","owner":"Voyrox","description":"Dynamic Scheduling using Tomasulo’s Algorithm","archived":false,"fork":false,"pushed_at":"2024-07-24T23:29:27.000Z","size":115,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-14T18:57:02.710Z","etag":null,"topics":["algorithm","assembly","emulator","ibm","rust","tomasulos-algorithm"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Voyrox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-23T08:52:21.000Z","updated_at":"2025-03-11T04:44:29.000Z","dependencies_parsed_at":"2024-12-05T03:39:11.887Z","dependency_job_id":null,"html_url":"https://github.com/Voyrox/Dynamic-Scheduling","commit_stats":null,"previous_names":["frost-lord/dynamic-scheduling","voyrox/dynamic-scheduling"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Voyrox/Dynamic-Scheduling","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voyrox%2FDynamic-Scheduling","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voyrox%2FDynamic-Scheduling/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voyrox%2FDynamic-Scheduling/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voyrox%2FDynamic-Scheduling/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Voyrox","download_url":"https://codeload.github.com/Voyrox/Dynamic-Scheduling/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Voyrox%2FDynamic-Scheduling/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29135919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T21:59:57.939Z","status":"ssl_error","status_checked_at":"2026-02-05T21:59:57.628Z","response_time":65,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["algorithm","assembly","emulator","ibm","rust","tomasulos-algorithm"],"created_at":"2025-04-10T05:45:44.880Z","updated_at":"2026-02-05T22:01:29.778Z","avatar_url":"https://github.com/Voyrox.png","language":"Rust","readme":"# Dynamic Scheduling -\u003e Instruction Scheduler Simulation\n\nThis project implements an instruction scheduler using dynamic scheduling based on Tomasulo’s Algorithm. The algorithm handles out-of-order execution of instructions to optimize the use of the CPU and improve performance.\n\n![Image](img.png)\n## Key Concepts\n\n### Tomasulo’s Algorithm\n\nTomasulo's Algorithm is a hardware algorithm for dynamic scheduling of instructions that allows out-of-order execution and eliminates data hazards by using register renaming. The algorithm consists of:\n\n- **Reservation Stations:** Hold instructions that are waiting to execute, including their operands and operation type.\n- **Register Status Table:** Keeps track of which reservation station (if any) will write to each register.\n- **Common Data Bus (CDB):** Broadcasts results to all reservation stations and registers, enabling register renaming and avoiding write-after-write (WAW) and write-after-read (WAR) hazards.\n\n## Input:\n\n| Instruction | Destination | Source 1 | Source 2 |\n|-------------|--------------|----------|----------|\n| LOAD        | F6           | R2       | None     |\n| LOAD        | F2           | R3       | None     |\n| MULT        | F0           | F2       | F4       |\n| SUB         | F8           | F6       | F2       |\n| DIV         | F10          | F0       | F2       |\n| ADD         | F6           | F8       | F2       |\n\n## Output:\n\n| Register | Value |\n|----------|-------|\n| F0       | 0     |\n| F1       | 0     |\n| F2       | 42    |\n| F3       | 0     |\n| F4       | 0     |\n| F5       | 0     |\n| F6       | 42    |\n| F7       | 0     |\n| F8       | 0     |\n| F9       | 0     |\n| F10      | 0     |\n\n# Inspired the project from\nhttps://www.cse.unsw.edu.au/~cs4211/seminars/w03-4up.pdf","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoyrox%2Fdynamic-scheduling","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvoyrox%2Fdynamic-scheduling","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvoyrox%2Fdynamic-scheduling/lists"}