cuda-samples/Samples/5_Domain_Specific/simpleD3D10
2023-03-01 01:41:29 +00:00
..
data add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30
Makefile add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30
README.md Updating Samples for 12.1 2023-03-01 01:41:29 +00:00
simpleD3D10_kernel.cu add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30
simpleD3D10_vs2017.sln add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30
simpleD3D10_vs2017.vcxproj Updating Samples for 12.1 2023-03-01 01:41:29 +00:00
simpleD3D10_vs2019.sln add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30
simpleD3D10_vs2019.vcxproj Updating Samples for 12.1 2023-03-01 01:41:29 +00:00
simpleD3D10_vs2022.sln add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30
simpleD3D10_vs2022.vcxproj Updating Samples for 12.1 2023-03-01 01:41:29 +00:00
simpleD3D10.cpp add and update samples for CUDA 11.6 2022-01-13 11:35:24 +05:30

simpleD3D10 - Simple Direct3D10 (Vertex Array)

Description

Simple program which demonstrates interoperability between CUDA and Direct3D10. The program generates a vertex array with CUDA and uses Direct3D10 to render the geometry. A Direct3D Capable device is required.

Key Concepts

Graphics Interop, 3D Graphics

Supported SM Architectures

SM 5.0 SM 5.2 SM 5.3 SM 6.0 SM 6.1 SM 7.0 SM 7.2 SM 7.5 SM 8.0 SM 8.6 SM 8.7 SM 8.9 SM 9.0

Supported OSes

Windows

Supported CPU Architecture

x86_64

CUDA APIs involved

CUDA Runtime API

cudaGraphicsUnmapResources, cudaGetErrorString, cudaGraphicsResourceGetMappedPointer, cudaGetLastError, cudaGraphicsMapResources, cudaGetDeviceCount, cudaGraphicsUnregisterResource, cudaGetDeviceProperties

Dependencies needed to build/run

DirectX

Prerequisites

Download and install the CUDA Toolkit 12.1 for your corresponding platform. Make sure the dependencies mentioned in Dependencies section above are installed.

Build and Run

Windows

The Windows samples are built using the Visual Studio IDE. Solution files (.sln) are provided for each supported version of Visual Studio, using the format:

*_vs<version>.sln - for Visual Studio <version>

Each individual sample has its own set of solution files in its directory:

To build/examine all the samples at once, the complete solution files should be used. To build/examine a single sample, the individual sample solution files should be used.

Note: Some samples require that the Microsoft DirectX SDK (June 2010 or newer) be installed and that the VC++ directory paths are properly set up (Tools > Options...). Check DirectX Dependencies section for details."

References (for more details)