From 0c54349235b1ceac87ca8ba5acbd11ad775d8ce2 Mon Sep 17 00:00:00 2001 From: MikeDvorskiy Date: Mon, 2 Dec 2024 12:05:30 +0100 Subject: [PATCH] [tests][cmake] an update of ONEDPL_BACKEND variable description --- cmake/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/README.md b/cmake/README.md index 7335b7e231..38a5066fa0 100644 --- a/cmake/README.md +++ b/cmake/README.md @@ -8,7 +8,7 @@ The following variables are provided for oneDPL configuration: | Variable | Type | Description | Default value | |------------------------------|--------|-----------------------------------------------------------------------------------------------|---------------| -| ONEDPL_BACKEND | STRING | Threading backend; supported values: tbb, dpcpp, dpcpp_only, serial, ...; the default value is defined by compiler: dpcpp for DPC++ and tbb for others | tbb/dpcpp | +| ONEDPL_BACKEND | STRING | Threading backend; supported values: tbb, dpcpp, dpcpp_only, tbb, omp, serial, ...; the default value is defined by compiler: dpcpp for DPC++ and tbb for others. These values may conflict with explicit set variables like `-DCMAKE_CXX_FLAGS="-DONEDPL_USE_DPCPP_BACKEND=0"` etc. | tbb/dpcpp | | ONEDPL_DEVICE_TYPE | STRING | Select device type for oneDPL test targets; affects only DPC++ backends; supported values: GPU, CPU, FPGA_HW, FPGA_EMU | GPU | | ONEDPL_DEVICE_BACKEND | STRING | Select device backend type for oneDPL test targets; affects only oneDPL DPC++ backends; supported values: opencl, level_zero, cuda, hip or * (the best backend as per DPC++ runtime heuristics). | * | | ONEDPL_USE_UNNAMED_LAMBDA | BOOL | Pass `-fsycl-unnamed-lambda`, `-fno-sycl-unnamed-lambda` compile options or nothing | |