-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[autodiff] Support basic operations for forward mode autodiff #5160
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. [ghstack-poisoned]
erizmr
added a commit
that referenced
this pull request
Jun 14, 2022
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. ghstack-source-id: b6a758af374b78d151a19297dd3351ef33bd85e7 Pull Request resolved: #5160
…iff" Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. [ghstack-poisoned]
erizmr
added a commit
that referenced
this pull request
Jun 14, 2022
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. ghstack-source-id: 97cafab313a596b79295050d6edbfd4625917a97 Pull Request resolved: #5160
…iff" Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. [ghstack-poisoned]
erizmr
added a commit
that referenced
this pull request
Jun 14, 2022
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. ghstack-source-id: 3148a68ab7d4146586ac2a272b7aa6808c821c51 Pull Request resolved: #5160
erizmr
added a commit
that referenced
this pull request
Jun 14, 2022
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. ghstack-source-id: 6b8ea7fff130cea9ef9c78933291b6f719cab9de Pull Request resolved: #5160
ailzhang
approved these changes
Jun 14, 2022
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.
As discussed offline, we'll merge this prototype first and there're a few followups:
- Add a test for fwdmode context manager
- Try getting rid of different compiled_functions inside Kernel class.
- Enforce checking for
ti.ad
intest_api.py
erizmr
added a commit
that referenced
this pull request
Jun 14, 2022
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. ghstack-source-id: 28c6d5f219d93aa8688b910e9ce84ec77d195728 Pull Request resolved: #5160
ailzhang
pushed a commit
that referenced
this pull request
Jun 14, 2022
Support cpu and gpu backends. The cc backend has an issue on FieldBuilder ref to #5143. The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported. ghstack-source-id: 28c6d5f219d93aa8688b910e9ce84ec77d195728 Pull Request resolved: #5160
20 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Stack from ghstack (oldest at bottom):
Support cpu and gpu backends.
The cc backend has an issue on FieldBuilder ref to #5143.
The opengl backend currently does not support materializing multiple snode trees (see OpenglProgramImpl::compile_snode_tree_types), thus FieldBuilder is not supported.
Related #5055