Skip to content

Commit

Permalink
Update readme (#962)
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard authored Nov 17, 2023
1 parent ec9df53 commit 8f1526b
Show file tree
Hide file tree
Showing 13 changed files with 485 additions and 97 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

549 changes: 455 additions & 94 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion _typos.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[default]
extend-ignore-identifiers-re = ["ratatui", "NdArray*", "ND"]
extend-ignore-identifiers-re = ["ratatui", "Ratatui", "NdArray*", "ND"]

[files]
extend-exclude = [
Expand Down
Binary file added assets/backend-chip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/burn-train-tui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/ember-blazingly-fast.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/ember-community.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/ember-walking.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/ember-wall.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/logo-burn-neutral.webp
Binary file not shown.
9 changes: 9 additions & 0 deletions burn-ndarray/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,12 @@ The following flags support various BLAS options:

Note, under the `no_std` mode, a random seed is generated during the build time if the seed is not
initialized by by `Backend::seed` method.

### Platform Support

| Option | CPU | GPU | Linux | MacOS | Windows | Android | iOS | WASM |
| :--------- | :-: | :-: | :---: | :---: | :-----: | :-----: | :-: | :--: |
| Pure Rust | Yes | No | Yes | Yes | Yes | Yes | Yes | Yes |
| Accelerate | Yes | No | No | Yes | No | No | Yes | No |
| Netlib | Yes | No | Yes | Yes | Yes | No | No | No |
| Openblas | Yes | No | Yes | Yes | Yes | Yes | Yes | No |
9 changes: 9 additions & 0 deletions burn-tch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ mod tch_cpu {
}
}
```

### Platform Support

| Option | CPU | GPU | Linux | MacOS | Windows | Android | iOS | WASM |
| :----- | :-: | :-: | :---: | :---: | :-----: | :-----: | :-: | :--: |
| CPU | Yes | No | Yes | Yes | Yes | Yes | Yes | No |
| CUDA | No | Yes | Yes | No | Yes | No | No | No |
| MPS | No | Yes | No | Yes | No | No | No | No |
| Vulkan | Yes | Yes | Yes | Yes | Yes | Yes | No | No |
12 changes: 11 additions & 1 deletion burn-wgpu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![license](https://shields.io/badge/license-MIT%2FApache--2.0-blue)](https://github.com/burn-rs/burn-wgpu/blob/master/README.md)

This crate provides a WGPU backend for [Burn](https://github.com/burn-rs/burn) using the
[wgpu](https://github.com/gfx-rs/wgpu).
[wgpu](https://github.com/gfx-rs/wgpu).

The backend supports Vulkan, Metal, DirectX11/12, OpenGL, WebGPU.

Expand All @@ -29,3 +29,13 @@ mod wgpu {
## Configuration

You can set `BURN_WGPU_MAX_TASKS` to a positive integer that determines how many computing tasks are submitted in batches to the graphics API.

## Platform Support

| Option | CPU | GPU | Linux | MacOS | Windows | Android | iOS | WASM |
| :-------- | :-: | :-: | :---: | :---: | :-----: | :-----: | :-: | :--: |
| Metal | No | Yes | No | Yes | No | No | Yes | No |
| Vulkan | Yes | Yes | Yes | Yes | Yes | Yes | Yes | No |
| OpenGL | No | Yes | Yes | Yes | Yes | Yes | Yes | No |
| WebGpu | No | Yes | No | No | No | No | No | Yes |
| Dx11/Dx12 | No | Yes | No | No | Yes | No | No | No |

0 comments on commit 8f1526b

Please sign in to comment.