Skip to content

Commit 99c9659

Browse files
IRTK 2024.0 emb gsg README and script updates (oneapi-src#2026)
Signed-off-by: Carroll, Michael R <[email protected]>
1 parent 021ba2d commit 99c9659

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

RenderingToolkit/GettingStarted/02_embree_gsg/gpu/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `Getting Started` GPU Sample for Intel&reg; oneAPI Rendering Toolkit (Render Kit): Intel&reg; Embree
1+
# `Getting Started` GPU Sample for Intel&reg; Rendering Toolkit (Render Kit): Intel&reg; Embree
22

33
This sample program, `minimal_sycl`, performs two ray-to-triangle-intersect tests with the Intel&reg; Embree API. One test is a successful intersection, and the second test misses. The program performs intersection tests on the GPU device. The program writes output results to the console (stdout).
44

@@ -13,8 +13,8 @@ This sample program, `minimal_sycl`, performs two ray-to-triangle-intersect test
1313
|:--- |:---
1414
| OS | Ubuntu* 22.04 <br> RHEL 8.5, 8.6 (or compatible) <br>Windows* 10 64-bit 20H2 or higher<br>Windows 11* 64-bit
1515
| Hardware | Intel&reg; Arc&trade; GPU or higher, compatible with Intel Xe-HPG architecture
16-
| Compiler Toolchain | **Windows\***: Intel&reg; oneAPI DPC++ Compiler 2023.0 or higher, MSVS 2019 or higher with Windows* SDK and CMake*<br>**Linux\***: Intel&reg; oneAPI DPC++ Compiler 2023.0 or higher, C++17 system compiler (for example g++), and CMake*
17-
| Libraries | Intel&reg; oneAPI DPC++ Compiler and Runtime Library (Base Toolkit)<br>Intel&reg; oneAPI Rendering Toolkit (Render Kit), includes Embree
16+
| Compiler Toolchain | **Windows\***: Intel&reg; oneAPI DPC++ Compiler 2024.0 or higher, MSVS 2019 or higher with Windows* SDK and CMake*<br>**Linux\***: Intel&reg; oneAPI DPC++ Compiler 2024.0 or higher, C++17 system compiler (for example g++), and CMake*
17+
| Libraries | Intel&reg; oneAPI DPC++ Compiler and Runtime Library (Base Toolkit)<br>Intel&reg; Rendering Toolkit (Render Kit), includes Embree
1818
| GPU Configuration | **System BIOS**: [Quick Start](https://www.intel.com/content/www/us/en/support/articles/000091128/graphics.html) <br> **Windows\***: [Drivers for Intel&reg; Graphics products](https://www.intel.com/content/www/us/en/support/articles/000090440/graphics.html ) <br> **Linux\***: [Install Guide](https://dgpu-docs.intel.com/installation-guides/index.html#)
1919
## Key Implementation Details
2020

@@ -56,7 +56,7 @@ cd gpu
5656
```
5757
mkdir build
5858
cd build
59-
cmake -G"Visual Studio 17 2022" -A x64 -T"Intel(R) oneAPI DPC++ Compiler 2023" ..
59+
cmake -G"Visual Studio 17 2022" -A x64 -T"Intel(R) oneAPI DPC++ Compiler 2024" ..
6060
cmake --build . --config Release
6161
cmake --install . --config Release
6262
cd ..\bin
@@ -69,7 +69,7 @@ cd ..\bin
6969

7070
### On Linux*
7171

72-
1. Start a new Terminal session. Ensure environment variables are set.https://www.intel.com/content/www/us/en/support/articles/000091128/graphics.html
72+
1. Start a new Terminal session. Ensure environment variables are set.
7373
2. Change to the GPU sample program directory.
7474
```
7575
cd <path-to-oneAPI-samples>/RenderingToolkit/GettingStarted/02_embree_gsg

RenderingToolkit/GettingStarted/02_embree_gsg/gpu/build-win-vs-dpcpp-toolchain.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ call "C:\Program Files (x86)\Intel\oneapi\setvars.bat"
44
REM set C_COMPILER=dpcpp
55
REM set CXX_COMPILER=dpcpp
66

7-
set "BUILD_COMMAND=cmake -G \"Visual Studio 17 2022\" -A x64 -T "Intel(R) oneAPI DPC++ Compiler 2023" -D CMAKE_INSTALL_PREFIX=.. .."
7+
set "BUILD_COMMAND=cmake -G \"Visual Studio 17 2022\" -A x64 -T \"Intel(R) oneAPI DPC++ Compiler 2024\" -D CMAKE_INSTALL_PREFIX=.. .."
88
echo %BUILD_COMMAND:\=% > build-command.txt
99
echo "CXX_COMPILER:" >> build-command.txt
1010
%CXX_COMPILER% --version >> build-command.txt

0 commit comments

Comments
 (0)