{"id":19943226,"url":"https://github.com/root-project/vecmath","last_synced_at":"2026-01-31T18:32:19.346Z","repository":{"id":71189868,"uuid":"136577753","full_name":"root-project/vecmath","owner":"root-project","description":"SIMD Vectorization Math Library, built on top of veccore","archived":false,"fork":false,"pushed_at":"2020-07-23T19:50:52.000Z","size":168,"stargazers_count":9,"open_issues_count":2,"forks_count":5,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-06-17T08:44:39.368Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/root-project.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":"2018-06-08T06:42:27.000Z","updated_at":"2020-10-11T14:44:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"e7dd3329-c181-4b6e-ae40-50ef02400e68","html_url":"https://github.com/root-project/vecmath","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/root-project/vecmath","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-project%2Fvecmath","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-project%2Fvecmath/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-project%2Fvecmath/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-project%2Fvecmath/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/root-project","download_url":"https://codeload.github.com/root-project/vecmath/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/root-project%2Fvecmath/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28949397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T18:30:42.805Z","status":"ssl_error","status_checked_at":"2026-01-31T18:30:19.593Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-11-13T00:15:53.025Z","updated_at":"2026-01-31T18:32:19.312Z","avatar_url":"https://github.com/root-project.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intro\n  The vecmath project provides a collection of vectorized based math utilities based on VecCore library.\n  \n# Requirements\n\n+ VecCore(starting from cee2341)\n+ Optional: Vc, UMESIMD as VecCore backends\n\n# How to use.\n\n## 1) Use VecMath installed package\n\n### Install this library.\n\n```bash\nmkdir build/ \u0026\u0026 cd build/\ncmake ../ -DCMAKE_INSTALL_PREFIX=$PREFIX \\\n\t      -DVecCore_DIR=\"path to dir with VecCoreConfig.cmake\"  #if VecCore is not installed inside prefix\nmake install\n```\n\n### Use it from your project\nIn your CMakeLists.txt:\n```cmake\nfind_package(VecMath 0.1.0 REQUIRED COMPONENTS Vc) #or any other VecCore backend\n\n#...\n\ntarget_link_libraries(YOUR_TARGET VecMath::VecMath)\n```\n\nor if you can't use new cmake `target_link_libraries` use old interface\n```cmake\ninclude_directories(${VecMath_INCLUDE_DIRS})\nadd_definitions(${VecMath_DEFINITIONS})\n\ntarget_link_libraries(YOUR_TARGET ${VecMath_LIBRARIES})\n```\n\nPass this to cmake generation of your project to find VecMath(if it is not in CMAKE_INSTALL_PREFIX):\n`-DVecMath_DIR=\"Path to dir where VecMathConfig.cmake is installed\"`\n\n\n## 2) Build VecMath in source as a git submodule\n\nCreate git submodule in YOU_PROJECT/VecMath pointing to this repository\n```\ncd YOUR_PROJECT\ngit submodule add https://gitlab.cern.ch/GeantV/VecMath.git\n```\n\nIn your CMakeLists.txt:\n```cmake\nset(VecCore_BACKEND Vc) #or any other VecCore backend\nadd_subdirectory(VecMath)\n\n#...\n\ntarget_link_libraries(YOUR_TARGET VecMath)\n```\n\n\n## API\nInside you .cxx file \n```cpp\n#include \u003cVecMath/Math.h\u003e\n#include \u003cVecMath/Rng.h\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froot-project%2Fvecmath","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froot-project%2Fvecmath","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froot-project%2Fvecmath/lists"}