Skip to content

Commit 5e4375c

Browse files
Remove stray space character from README.md
The command to produce SPV from OpenCL source file had a stray space character in the middle of compiler flag, rendering the command invalid.
1 parent ab9c0cd commit 5e4375c

File tree

1 file changed

+1
-1
lines changed
  • examples/pybind11/use_dpctl_sycl_kernel/resource

1 file changed

+1
-1
lines changed

examples/pybind11/use_dpctl_sycl_kernel/resource/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```bash
44
export TOOLS_DIR=$(dirname $(dirname $(which icx)))/bin-llvm
5-
$TOOLS_DIR/clang -cc1 -triple spir double_it.cl -finclude-default-header -flto -emit -llvm-bc -o double_it.bc
5+
$TOOLS_DIR/clang -cc1 -triple spir double_it.cl -finclude-default-header -flto -emit-llvm-bc -o double_it.bc
66
$TOOLS_DIR/llvm-spirv double_it.bc -o double_it.spv
77
rm double_it.bc
88
```

0 commit comments

Comments
 (0)