-
Notifications
You must be signed in to change notification settings - Fork 69
webGPU pipelines #181
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
base: 12-17-webgpu_resources
Are you sure you want to change the base?
webGPU pipelines #181
Conversation
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
throw new Error("Not implemented") | ||
super(device, deeptable); | ||
this.params = { ...defaultTinyForestParams, ...t }; | ||
this.initializeForestsToZero(); | ||
this.bufferSet = new WebGPUBufferSet(device, bufferSize); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The throw
statement makes all code after it unreachable. Either move the throw
to the end of the constructor if the intent is to prevent instantiation, or remove the unreachable code that follows it. Currently the bufferSet
assignment and other initialization code will never execute.
Spotted by Graphite Reviewer
Is this helpful? React 👍 or 👎 to let us know.
1e1ae8e
to
830811c
Compare
5670864
to
8548081
Compare
830811c
to
a23a2c3
Compare
8548081
to
8b78ca4
Compare
a23a2c3
to
b9dc76b
Compare
8b78ca4
to
459e29b
Compare
b9dc76b
to
83f360f
Compare
459e29b
to
07fc8ff
Compare
83f360f
to
07bc4b3
Compare
07fc8ff
to
2eff59a
Compare
No description provided.