{"id":30815427,"url":"https://github.com/apebl/gpseq","last_synced_at":"2026-02-14T15:02:05.234Z","repository":{"id":133134006,"uuid":"199293299","full_name":"apebl/gpseq","owner":"apebl","description":"A parallelism library for Vala and GObject (mirror)","archived":false,"fork":false,"pushed_at":"2020-03-21T00:10:46.000Z","size":736,"stargazers_count":11,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-06T08:22:27.108Z","etag":null,"topics":["channels","fork-join","glib","gobject","multithreading","parallel","parallelism","vala","work-stealing"],"latest_commit_sha":null,"homepage":"https://gitlab.com/kosmospredanie/gpseq","language":"Vala","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apebl.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-07-28T13:52:31.000Z","updated_at":"2024-08-14T09:15:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"92a77b9f-8b2c-4670-a366-f1d5c2028690","html_url":"https://github.com/apebl/gpseq","commit_stats":null,"previous_names":["apebl/gpseq","kosmospredanie/gpseq"],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/apebl/gpseq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apebl%2Fgpseq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apebl%2Fgpseq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apebl%2Fgpseq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apebl%2Fgpseq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apebl","download_url":"https://codeload.github.com/apebl/gpseq/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apebl%2Fgpseq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29447768,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T14:10:32.461Z","status":"ssl_error","status_checked_at":"2026-02-14T14:09:49.945Z","response_time":53,"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":["channels","fork-join","glib","gobject","multithreading","parallel","parallelism","vala","work-stealing"],"created_at":"2025-09-06T08:13:23.304Z","updated_at":"2026-02-14T15:02:05.182Z","avatar_url":"https://github.com/apebl.png","language":"Vala","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gpseq\n\n[![pipeline status](https://gitlab.com/kosmospredanie/gpseq/badges/master/pipeline.svg?style=flat-square)](https://gitlab.com/kosmospredanie/gpseq/commits/master)\n[![coverage report](https://gitlab.com/kosmospredanie/gpseq/badges/master/coverage.svg?style=flat-square)](https://gitlab.com/kosmospredanie/gpseq/-/jobs/artifacts/master/file/coverage/index.html?job=test)\n\nGpseq is a parallelism library for Vala and GObject.\n\n```vala\nusing Gpseq;\n\nvoid main () {\n    string[] array = {\"dog\", \"cat\", \"pig\", \"boar\", \"bear\"};\n    Seq.of_array\u003cstring\u003e(array)\n        .parallel()\n        .filter(g =\u003e g.length == 3)\n        .map\u003cstring\u003e(g =\u003e g.up())\n        .foreach(g =\u003e print(\"%s\\n\", g))\n        .wait();\n}\n\n// (possibly unordered) output:\n// DOG\n// CAT\n// PIG\n```\n\n```vala\nusing Gpseq;\n\nvoid main () {\n    Channel\u003cstring\u003e chan = Channel.bounded\u003cstring\u003e(0);\n    run( () =\u003e chan.send(\"ping\").ok() );\n    print(\"%s\\n\", chan.recv().value);\n}\n\n// output:\n// ping\n```\n\n## Features\n\n- Work-stealing task scheduling with managed blocking\n- Functional programming for data processing with parallel execution support (Seq)\n- Unbuffered, buffered, and unbounded MPMC channels\n- Fork-join parallelism\n- Parallel sorting\n- Futures and promises\n- 64-bit atomic operations\n- Overflow safe arithmetic functions for signed integers\n- ...\n\n## Documentation\n\nRead [wiki](https://gitlab.com/kosmospredanie/gpseq/wikis),\n[valadoc](https://valadoc.org/gpseq-1.0/index.htm),\nand [gtkdoc (C API)](https://gitlab.com/kosmospredanie/gpseq/-/jobs/artifacts/master/file/gtkdoc/html/index.html?job=build).\n\nThere is a developer's guide in the wiki.\n\n## Install\n\nSee the [installation guide](INSTALL.md).\n\n## License\n\nGpseq is released under the [LGPL 3.0 license](COPYING).\n\n### Libgee\n\nGpseq uses a modified version of timsort.vala of libgee.\nSee [TimSort.vala](src/TimSort.vala) and [COPYING-libgee](COPYING-libgee).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapebl%2Fgpseq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapebl%2Fgpseq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapebl%2Fgpseq/lists"}