Skip to content

Commit 223db0f

Browse files
committed
Add code spans around HTML-like text
This was incorrectly interpreting the value as an HTML tag. This wraps it in an code span to avoid that.
1 parent c57b3a0 commit 223db0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/offload/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Now we generate the device code. Replace the target-cpu with the right code for
7979
RUSTFLAGS="-Ctarget-cpu=gfx90a --emit=llvm-bc,llvm-ir" cargo +offload build -Zunstable-options -r -v --target amdgcn-amd-amdhsa -Zbuild-std=core
8080
```
8181

82-
Now find the <libname>.ll under target/amdgcn-amd-amdhsa folder and copy it to a device.ll file (or adjust the file names below).
82+
Now find the `<libname>.ll` under target/amdgcn-amd-amdhsa folder and copy it to a device.ll file (or adjust the file names below).
8383
If you work on an NVIDIA or Intel gpu, please adjust the names acordingly and open an issue to share your results (either if you succeed or fail).
8484
First we compile our .ll files (good for manual inspections) to .bc files and clean up leftover artifacts. The cleanup is important, otherwise caching might interfere on following runs.
8585
```

0 commit comments

Comments
 (0)