Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add software and hardware requirements #102

Merged
merged 2 commits into from
Mar 2, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ This library is a C++ wrapper for the Nvidia C libraries (e.g. CUDA driver, nvrt

Originally, the API enforced RAII to even further reduce the risk of faulty code, but enforcing RAII and compatibility with (unmanaged) objects obtained outside this API are mutually exclusive.

## Requirements

| Software | Minimum version |
| ----------- | ----------- |
| CUDA | 10.0 or later |
| CMake | 3.22 or later |
fdiblen marked this conversation as resolved.
Show resolved Hide resolved
| gcc | 9.3 or later |
| OS | Linux distro (amd64) |

| Hardware | Type |
| ----------- | ----------- |
| GPU architecture | [NVIDIA PASCAL](https://www.nvidia.com/en-in/geforce/products/10series/architecture/) or newer|

## Developer documentation

See [README.dev.md](README.dev.md) for documentation on setting up your development environment.

## Used by

This section aims to provide an overview of projects that use this repo's library (or something very similar), e.g. through git submodules or by including copies of this library in their source tree:
Expand Down Expand Up @@ -54,4 +71,4 @@ url: https://github.com/apardyl/cudaplusplus

## Contributing

See [CONTRIBUTING](CONTRIBUTING.md) for a guide on how to contribute and [README.dev.md](README.dev.md) for documentation on setting up your development environment.
See [CONTRIBUTING](CONTRIBUTING.md) for a guide on how to contribute.