{"id":30767716,"url":"https://github.com/sciml/parallelparticleswarms.jl","last_synced_at":"2026-03-14T04:07:59.189Z","repository":{"id":207835128,"uuid":"696427331","full_name":"SciML/ParallelParticleSwarms.jl","owner":"SciML","description":"GPU accelerated Particle Swarm Optimization","archived":false,"fork":false,"pushed_at":"2025-07-31T21:57:04.000Z","size":351,"stargazers_count":24,"open_issues_count":14,"forks_count":3,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-08-29T10:23:27.590Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","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/SciML.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},"funding":{"github":"SciML"}},"created_at":"2023-09-25T18:10:56.000Z","updated_at":"2025-07-31T21:57:08.000Z","dependencies_parsed_at":"2023-12-04T07:24:38.972Z","dependency_job_id":"aa77471e-3f81-4eab-8b1e-bd949ab8c474","html_url":"https://github.com/SciML/ParallelParticleSwarms.jl","commit_stats":{"total_commits":123,"total_committers":4,"mean_commits":30.75,"dds":"0.34959349593495936","last_synced_commit":"3a3fc70e4c3616bee26bc4cc73e60fa50ef602d2"},"previous_names":["sciml/psogpu.jl","sciml/parallelparticleswarms.jl"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/SciML/ParallelParticleSwarms.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciML%2FParallelParticleSwarms.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciML%2FParallelParticleSwarms.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciML%2FParallelParticleSwarms.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciML%2FParallelParticleSwarms.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SciML","download_url":"https://codeload.github.com/SciML/ParallelParticleSwarms.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SciML%2FParallelParticleSwarms.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273665993,"owners_count":25146277,"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","status":"online","status_checked_at":"2025-09-04T02:00:08.968Z","response_time":61,"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":[],"created_at":"2025-09-04T20:08:20.965Z","updated_at":"2026-03-14T04:07:59.174Z","avatar_url":"https://github.com/SciML.png","language":"Julia","funding_links":["https://github.com/sponsors/SciML"],"categories":[],"sub_categories":[],"readme":"# ParallelParticleSwarms.jl\n\n[![CI](https://github.com/SciML/ParallelParticleSwarms.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/SciML/ParallelParticleSwarms.jl/actions/workflows/CI.yml)\n[![Build status](https://badge.buildkite.com/caf5d6f9d5129b5796049b085df39fd8fab055826b513d361e.svg)](https://buildkite.com/julialang/parallelparticleswarms-dot-jl)\n[![codecov](https://codecov.io/gh/SciML/ParallelParticleSwarms.jl/graph/badge.svg?token=H5U5UAIRXX)](https://codecov.io/gh/SciML/ParallelParticleSwarms.jl)\n[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor%27s%20Guide-blueviolet)](https://github.com/SciML/ColPrac)\n[![SciML Code Style](https://img.shields.io/static/v1?label=code%20style\u0026message=SciML\u0026color=9558b2\u0026labelColor=389826)](https://github.com/SciML/SciMLStyle)\n\nAccelerating convex/non-convex optimization with GPUs using Particle-Swarm based methods.\n\nSupports Julia's generic SciML interface.\n\n```julia\n\nusing ParallelParticleSwarms, StaticArrays, CUDA\n\nlb = @SArray [-1.0f0, -1.0f0, -1.0f0]\nub = @SArray [10.0f0, 10.0f0, 10.0f0]\n\nfunction rosenbrock(x, p)\n    sum(p[2] * (x[i + 1] - x[i]^2)^2 + (p[1] - x[i])^2 for i in 1:(length(x) - 1))\nend\n\nx0 = @SArray zeros(Float32, 3)\np = @SArray Float32[1.0, 100.0]\n\nprob = OptimizationProblem(rosenbrock, x0, p; lb = lb, ub = ub)\n\nsol = solve(prob,\n    ParallelSyncPSOKernel(1000, backend = CUDA.CUDABackend()),\n    maxiters = 500)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsciml%2Fparallelparticleswarms.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsciml%2Fparallelparticleswarms.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsciml%2Fparallelparticleswarms.jl/lists"}