{"id":20563397,"url":"https://github.com/siddhant-vij/concurrent-matrix-multiplication","last_synced_at":"2026-04-18T04:34:44.773Z","repository":{"id":225658531,"uuid":"766476366","full_name":"siddhant-vij/Concurrent-Matrix-Multiplication","owner":"siddhant-vij","description":"Matrix multiplication using concurrency in multiple programming languages.","archived":false,"fork":false,"pushed_at":"2024-03-25T21:30:35.000Z","size":62242,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T17:52:29.571Z","etag":null,"topics":["concurrency","cpp","go","java","matrix-multiplication","multithreading","optimization","python"],"latest_commit_sha":null,"homepage":"","language":"C++","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/siddhant-vij.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,"zenodo":null}},"created_at":"2024-03-03T11:28:53.000Z","updated_at":"2024-03-16T00:10:57.000Z","dependencies_parsed_at":"2024-03-25T22:44:26.048Z","dependency_job_id":null,"html_url":"https://github.com/siddhant-vij/Concurrent-Matrix-Multiplication","commit_stats":null,"previous_names":["siddhant-vij/concurrent-matrix-multiplication"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/siddhant-vij/Concurrent-Matrix-Multiplication","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Matrix-Multiplication","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Matrix-Multiplication/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Matrix-Multiplication/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Matrix-Multiplication/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siddhant-vij","download_url":"https://codeload.github.com/siddhant-vij/Concurrent-Matrix-Multiplication/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siddhant-vij%2FConcurrent-Matrix-Multiplication/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31957084,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["concurrency","cpp","go","java","matrix-multiplication","multithreading","optimization","python"],"created_at":"2024-11-16T04:18:06.165Z","updated_at":"2026-04-18T04:34:39.761Z","avatar_url":"https://github.com/siddhant-vij.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Concurrent Matrix Multiplication\n\nAims to showcase the power of concurrency and multithreading across different programming environments by implementing matrix multiplication.\n\u003cbr\u003e\n\u003cbr\u003e\nThe project will demonstrate how to leverage the concurrency features of Java, C++, Go, and Python to improve the performance of a computationally intensive task like matrix multiplication.\n\n\u003cbr\u003e\n\n## Table of Contents\n\n1. [Features](#features)\n1. [Technical Scope](#technical-scope)\n1. [Installation and Usage](#installation-and-usage)\n1. [Contributing](#contributing)\n1. [License](#license)\n\n\u003cbr\u003e\n\n## Features\n\n- Concurrent multiplication of two matrices.\n- Dynamic input of matrix sizes and values or generation of matrices with random values.\n- Performance metrics comparing concurrent and sequential implementations.\n- Multi-language support: Java, C++, Go, and Python.\n\n\u003cbr\u003e\n\n## Technical Scope\n\n- **Java**: Utilizing ExecutorService and Future for managing concurrent tasks.\n- **C++**: Leveraging std::thread and std::future for multithreading.\n- **Go**: Implementing goroutines and channels for concurrent execution.\n- **Python**: Using concurrent.futures for threading or multiprocessing.\n\n\u003cbr\u003e\n\n## Installation and Usage\n\n1. **Clone the Repository**:\n    ```bash\n    git clone https://github.com/siddhant-vij/Concurrent-Matrix-Multiplication.git\n    ```\n2. **Navigate to Language Directory**:\n    ```bash\n    cd Concurrent-Matrix-Multiplication/[language]\n    ```\n3. **Install Dependencies**: Standard instructions to be followed for each language, if any external dependency.\n4. **Build and Run the Application**: Standard instructions to be followed for each language.\n\n\u003cbr\u003e\n\n## Contributing\n\nContributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n1. **Fork the Project**\n2. **Create your Feature Branch**: \n    ```bash\n    git checkout -b feature/AmazingFeature\n    ```\n3. **Commit your Changes**: \n    ```bash\n    git commit -m 'Add some AmazingFeature'\n    ```\n4. **Push to the Branch**: \n    ```bash\n    git push origin feature/AmazingFeature\n    ```\n5. **Open a Pull Request**\n\n\u003cbr\u003e\n\n## License\n\nDistributed under the MIT License. See [`LICENSE`](https://github.com/siddhant-vij/Concurrent-Matrix-Multiplication/blob/main/LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhant-vij%2Fconcurrent-matrix-multiplication","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiddhant-vij%2Fconcurrent-matrix-multiplication","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiddhant-vij%2Fconcurrent-matrix-multiplication/lists"}