{"id":32154420,"url":"https://github.com/juliasimd/manualmemory.jl","last_synced_at":"2025-10-21T11:55:38.297Z","repository":{"id":44596517,"uuid":"373745305","full_name":"JuliaSIMD/ManualMemory.jl","owner":"JuliaSIMD","description":"Manual memory management utilities.","archived":false,"fork":false,"pushed_at":"2024-11-18T23:18:05.000Z","size":142,"stargazers_count":34,"open_issues_count":5,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-21T11:55:07.924Z","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/JuliaSIMD.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}},"created_at":"2021-06-04T06:37:42.000Z","updated_at":"2025-07-13T00:06:08.000Z","dependencies_parsed_at":"2024-04-09T15:54:19.201Z","dependency_job_id":"a3137a9a-f40d-4070-8d2d-a88249efdf9a","html_url":"https://github.com/JuliaSIMD/ManualMemory.jl","commit_stats":{"total_commits":28,"total_committers":5,"mean_commits":5.6,"dds":0.5,"last_synced_commit":"8153c8871b2efdfdfe90631ca16ee49b89332441"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/JuliaSIMD/ManualMemory.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaSIMD%2FManualMemory.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaSIMD%2FManualMemory.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaSIMD%2FManualMemory.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaSIMD%2FManualMemory.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuliaSIMD","download_url":"https://codeload.github.com/JuliaSIMD/ManualMemory.jl/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaSIMD%2FManualMemory.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280256225,"owners_count":26299342,"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-10-21T02:00:06.614Z","response_time":58,"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-10-21T11:55:33.853Z","updated_at":"2025-10-21T11:55:38.290Z","avatar_url":"https://github.com/JuliaSIMD.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ManualMemory\n\n[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaSIMD.github.io/ManualMemory.jl/stable)\n[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaSIMD.github.io/ManualMemory.jl/dev)\n[![Build Status](https://github.com/JuliaSIMD/ManualMemory.jl/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaSIMD/ManualMemory.jl/actions/workflows/CI.yml)\n[![Coverage](https://codecov.io/gh/JuliaSIMD/ManualMemory.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaSIMD/ManualMemory.jl)\n\nManually managed memory buffers backed by NTuples\n\n### Examples\n\n```julia\njulia\u003e using ManualMemory: MemoryBuffer, load, store!, LazyPreserve, preserve, PseudoPtr, Reference\n\njulia\u003e m = MemoryBuffer{4,Float64}(undef)\nMemoryBuffer{4, Float64}((2.283825594e-314, 2.2157350003e-314, 2.216358792e-314, 2.08e-322))\n\njulia\u003e store!(pointer(m), 1.23)\n\njulia\u003e load(pointer(m))\n1.23\n```\nSpecifying an existing `NTuple` of data:\n```julia\njulia\u003e s = (1,2,3,4,5);\n\njulia\u003e m = MemoryBuffer(s)\nMemoryBuffer{5, Int64}((1, 2, 3, 4, 5))\n\njulia\u003e load(p)\n1\n\njulia\u003e load(p+sizeof(Int64))\n2\n\njulia\u003e load(p+sizeof(Int64)*2)\n3\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliasimd%2Fmanualmemory.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuliasimd%2Fmanualmemory.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliasimd%2Fmanualmemory.jl/lists"}