{"id":20608389,"url":"https://github.com/jusqua/visionsycl","last_synced_at":"2025-03-06T17:28:38.795Z","repository":{"id":258236738,"uuid":"873635799","full_name":"jusqua/visionsycl","owner":"jusqua","description":"Attempt to provide common image processing functions that runs on heterogeneous devices.","archived":false,"fork":false,"pushed_at":"2024-12-02T02:53:47.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-17T03:09:45.056Z","etag":null,"topics":["cmake","cpp","dpcpp","learn","oneapi","sycl"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jusqua.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-10-16T13:50:43.000Z","updated_at":"2024-12-02T02:53:50.000Z","dependencies_parsed_at":"2024-10-18T04:48:44.893Z","dependency_job_id":"5483c846-1280-472b-ab17-3e6184332af3","html_url":"https://github.com/jusqua/visionsycl","commit_stats":null,"previous_names":["jusqua/learn-sycl","jusqua/visionsycl"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusqua%2Fvisionsycl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusqua%2Fvisionsycl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusqua%2Fvisionsycl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jusqua%2Fvisionsycl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jusqua","download_url":"https://codeload.github.com/jusqua/visionsycl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":242253350,"owners_count":20097370,"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","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":["cmake","cpp","dpcpp","learn","oneapi","sycl"],"created_at":"2024-11-16T10:10:20.957Z","updated_at":"2025-03-06T17:28:38.773Z","avatar_url":"https://github.com/jusqua.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vision SYCL (with Intel® oneAPI)\n\nAttempt to provide common image processing functions that runs on heterogeneous devices.\n\n## Installing Dependencies\n\n- C++ Development Tools\n- [Intel® oneAPI Base Toolkit](https://www.intel.com/content/www/us/en/developer/tools/oneapi/overview.html)\n- [CMake](https://cmake.org/)\n- [Ninja](https://ninja-build.org/)\n\n### Windows\n\nDownload the dependencies from the websites listed [above](#installing-dependencies).\n\nFirst install the `Visual Studio Build Tools`:\n```sh\nwinget install Microsoft.VisualStudio.2022.BuildTools\n```\nOpen `Visual Studio Installer`, select current installed version, click `Modify` button, select `Development with C++` checkbox and hit `Modify` button, and wait it finish.\n\nFor `oneAPI Base Toolkit` you need to install `Visual Studio Build Tools` before install `oneAPI Base Toolkit`.\nInstall the netinstaller from the website listed above, and follow the instructions.\n\nFor `CMake` and `Ninja`:\n```sh\nwinget install Kitware.CMake Ninja-build.Ninja\n```\n\n### Linux\n\nInstalling `CMake`, `Ninja` and basic development package and tools via package manager:\n\n#### Debian/Ubuntu\n```sh\nsudo apt install cmake ninja-build pkg-config build-essential\n```\n\n#### Fedora\n```sh\nsudo dnf install cmake ninja-build pkg-config\nsudo dnf group install \"Development Tools\"\n```\n\n#### OpenSUSE\n```sh\nsudo zypper install cmake ninja pkg-config\nsudo zypper install -t pattern devel_C_C++\n```\n\nAdd the `oneAPI Base Toolkit` repo from the website listed [above](#installing-dependencies).\n```sh\n# Switch apt to dnf/zypper if aplicable\nsudo apt install intel-oneapi-base-toolkit\n```\n\n## Installing SYCL Backends\n\n### Windows\n\nBackends for Intel hardware are installed by default, for NVIDIA and AMD see [bellow](#nvidia-and-amd).\n\n### Linux\n\nThis is for Intel backend, for NVIDIA and AMD see [below](#nvidia-and-amd).\n\n#### Debian/Ubuntu\n```sh\nsudo apt install intel-opencl libze1 libze-intel-gpu1\n```\n\n#### Fedora\n```sh\nsudo dnf install intel-compute-runtime oneapi-level-zero\n```\n\n#### OpenSUSE\n```sh\nsudo zypper install intel-opencl libze_intel_gpu1\n```\n\n### NVIDIA and AMD\n\nSee: (Codeplay)[https://developer.codeplay.com/] solutions.\n\n## Setup environment\n\n### Windows\n\nUsing `cmd`:\n```sh\n\"C:\\Program Files (x86)\\Intel\\oneAPI\\setvars.bat\" --include-intel-llvm\n```\n\n### Linux\n\nUsing `bash`:\n```sh\n. /opt/intel/oneapi/setvars.sh --include-intel-llvm\n```\n\n## Building\n\nAfter [set up your environment](#setup-environment), select a preset triplet:\n- `os`: `linux` or `windows`\n- `gpu`: `intel`, `amd` or `nvidia`\n- `build`: `release` or `debug`\n\n```sh\n# cmake --preset linux-intel-release\ncmake --preset {os}-{gpu}-{build}\ncmake --build build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjusqua%2Fvisionsycl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjusqua%2Fvisionsycl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjusqua%2Fvisionsycl/lists"}