Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

started the burn developer book #1184

Merged
merged 33 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
260f93b
started the burn developer book
skewballfox Jan 26, 2024
d9a637f
forgot to enable mathjax for mdbook
skewballfox Jan 26, 2024
8fc11bb
copied the contents of architecture.md, and fleshing things out
skewballfox Jan 26, 2024
c1b4dae
fixed issue with inline mathjax
skewballfox Jan 26, 2024
e2738a8
fixed typos, added instructions
skewballfox Jan 26, 2024
79c29c6
updating info on tensorops, fixing typos
skewballfox Jan 27, 2024
cc93bab
added test for powf, fixed typos, updated index, etc
skewballfox Jan 27, 2024
fb64d11
fixed issue with burn-wgpu 0^0
skewballfox Jan 28, 2024
bcc232e
formatting
skewballfox Jan 28, 2024
227a5ea
updated section for adding ops to wgpu
skewballfox Jan 28, 2024
9ea4498
changed powf_scalar to powf_primitive for wgpu code
skewballfox Jan 29, 2024
15c0212
Update contributor-book/src/getting-started/testing.md
skewballfox Jan 29, 2024
f408eff
Update contributor-book/src/guides/adding-a-new-operation-to-burn.md
skewballfox Jan 29, 2024
b4f84d0
Update contributor-book/src/guides/adding-a-new-operation-to-burn.md
skewballfox Jan 29, 2024
151f444
Update contributor-book/src/getting-started/testing.md
skewballfox Jan 29, 2024
8c67766
Update contributor-book/src/getting-started/testing.md
skewballfox Jan 29, 2024
b312607
Update contributor-book/src/getting-started/setting-up-the-environmen…
skewballfox Jan 29, 2024
5ac299a
implementeds suggestions by @syl20bnr
skewballfox Jan 29, 2024
c4ee85b
fixed typography
skewballfox Jan 29, 2024
f63a79d
Apply suggestions from code review
skewballfox Jan 29, 2024
07db8ad
fixed typos, and incorrect rendering of footnotes
skewballfox Jan 29, 2024
1f89007
Format the text using prettier
antimora Jan 31, 2024
20057bf
implemented suggestions
skewballfox Jan 31, 2024
f0ba1d2
implemented suggestion
skewballfox Jan 31, 2024
418a08a
Merge branch 'main' into contributor-book
skewballfox Feb 1, 2024
3ea3219
updated testing autodiff section
skewballfox Feb 1, 2024
2739781
fixed typo
skewballfox Feb 1, 2024
5d06209
Apply suggestions from code review
skewballfox Feb 2, 2024
726d232
fixes related to code review
skewballfox Feb 2, 2024
e9ee469
added links to discord server
skewballfox Feb 2, 2024
c1f6304
fixed a typo in the book xtask and implemented changes from code review
skewballfox Feb 2, 2024
b3e84ef
implemented suggestions from code reviews
skewballfox Feb 2, 2024
6d9c783
implemented suggestions from code review
skewballfox Feb 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
implemented suggestions from code review
  • Loading branch information
skewballfox committed Feb 3, 2024
commit 6d9c7837e584423cbd1e4a35e82ee51e92eddacf
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ To use the debugger, follow these steps:
2. Select the configuration from the "run and debug" side panel (it have a infested play button), then select the target from
3. Now you can enable breakpoint on code through IDE and then start debugging the library/binary you want, such as the following example:

<div align="center">
<img src="./assets/debug-options-vscode.png" width="700px"/>
<div align="left">

![debug-options](debug-options-vscode.png)


If you're creating a new library or binary, keep in mind to repeat the step 1. to always keep a fresh list of targets.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# setting up the environment
# Setting up the environment

There are a couple of tools that need to be installed, and commands to be familiar with, depending
on what part of the project you plan on contributing to. This section should be up to date with
Expand Down
2 changes: 1 addition & 1 deletion contributor-book/src/getting-started/testing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# testing
# Testing

## Test for TensorOps

Expand Down
Loading