Browse Source

Some typo fixes (#5339)

tags/20240410
afredooo GitHub 2 years ago
parent
commit
96d073d541
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      docs/faq.en.md
  2. +2
    -2
      docs/how-to-use-and-FAQ/FAQ-ncnn-vulkan.md

+ 1
- 1
docs/faq.en.md View File

@@ -262,7 +262,7 @@ Fully customizable op, first change to one that can export (e.g. concat slice),
Set net.opt.use_vulkan_compute = true before load_param / load_model;
- ## How to exexcite multiple blob inputs, multiple blob outputs?
- ## How to ececute multiple blob inputs, multiple blob outputs?
Multiple execute `ex.input()` and `ex.extract()` like following
```
ex.input("data1", in_1);


+ 2
- 2
docs/how-to-use-and-FAQ/FAQ-ncnn-vulkan.md View File

@@ -39,7 +39,7 @@ Most of these systems are android with version lower than 8.1.

In the beginning, I had no GPGPU programming experience, and I had to learn one.

vulkan is considered more portable and well supported by venders and the cross-platform low-overhead graphics api. As a contrast, cuda is only available on nvidia device, metal is only available on macos and ios, while loading opencl library is banned in android 7.0+ and does not work on ios.
vulkan is considered more portable and well supported by vendors and the cross-platform low-overhead graphics api. As a contrast, cuda is only available on nvidia device, metal is only available on macos and ios, while loading opencl library is banned in android 7.0+ and does not work on ios.

### I got errors like "vkCreateComputePipelines failed -1000012000" or random stalls or crashes

@@ -87,7 +87,7 @@ It is common that your model runs slower on gpu than cpu on arm devices like mob

### vulkan device not found / extra high cpu utility while vulkan is enabled on nvidia gpu

There are severel reasons could lead to this outcome. First please check your driver status with `nvidia-smi`. If you have correctly installed your driver, you should see something like this:
There are several reasons could lead to this outcome. First please check your driver status with `nvidia-smi`. If you have correctly installed your driver, you should see something like this:

```bash
$ nvidia-smi


Loading…
Cancel
Save