Add support for dict batches in DataLoader#1350
Closed
chsasank wants to merge 1 commit intopytorch:masterfrom
Closed
Add support for dict batches in DataLoader#1350chsasank wants to merge 1 commit intopytorch:masterfrom
chsasank wants to merge 1 commit intopytorch:masterfrom
Conversation
Contributor
|
I think it's a duplicate of #1131, that also added tests (that failed right now, because sets are unordered, but the tests don't handle that). |
Contributor
Author
Contributor
|
I think the only missing thing is fixing that test. |
Contributor
Author
|
Cool, I'll fix it and create another PR. |
eqy
pushed a commit
to eqy/pytorch
that referenced
this pull request
Jan 20, 2022
* Refactor War Sync Insertion Pass (pytorch#1339) * Remove kir::Expr::scope_ (pytorch#1341) * Fusion IR Refactor (pytorch#1343) * Refactor KIR Step 1 - Remove kir::Node (pytorch#1347) * Refactor KIR Step 2 - TMP IrUtils change (pytorch#1348) * Refactor KIR Step 3 - Remove kir::Expr and kir::Val. (pytorch#1349) * Refactor KIR Step 4 - Remove kir::Bool,Double,Int,NamedScalar. (pytorch#1350) * Refactor KIR Step 5 - Remove kir::IterDomain/TensorDomain/TensorView (pytorch#1351) * Refactor KIR Step 6 - Remove kir::UnaryOp/BinaryOp/TernaryOp/ReductionOp/WelfordOp/BroadcastOp. (pytorch#1352) * Refactor KIR Step 7 - Remove kir dispatch (pytorch#1353) * Refactor KIR Step 8 - Clean up lower_utils (pytorch#1355) * Refactor KIR Step 9 - lower_utils ir_utils::applyReplacements. (pytorch#1354) * Refactor KIR Step 10 - Remove kir_printer in favor of io_stream (pytorch#1356)
pytorch-bot bot
pushed a commit
that referenced
this pull request
Mar 12, 2024
1. Configurable CMAKE_PREFIX_PATH in CI script. CMAKE_PREFIX_PATH should honor $CONDA_PREFIX as described in PyTorch build instructions. 2. Fix the parsing of /etc/os-release The old code parses OS_DISTRO as 'PRETTY_Ubuntu' on Ubuntu and thus never links to libtinfo correctly.
pytorch-bot bot
pushed a commit
that referenced
this pull request
Mar 19, 2024
1. Configurable CMAKE_PREFIX_PATH in CI script. CMAKE_PREFIX_PATH should honor $CONDA_PREFIX as described in PyTorch build instructions. 2. Fix the parsing of /etc/os-release The old code parses OS_DISTRO as 'PRETTY_Ubuntu' on Ubuntu and thus never links to libtinfo correctly.
pytorch-bot bot
pushed a commit
that referenced
this pull request
Apr 10, 2024
1. Configurable CMAKE_PREFIX_PATH in CI script. CMAKE_PREFIX_PATH should honor $CONDA_PREFIX as described in PyTorch build instructions. 2. Fix the parsing of /etc/os-release The old code parses OS_DISTRO as 'PRETTY_Ubuntu' on Ubuntu and thus never links to libtinfo correctly.
pytorch-bot bot
pushed a commit
that referenced
this pull request
Apr 30, 2024
1. Configurable CMAKE_PREFIX_PATH in CI script. CMAKE_PREFIX_PATH should honor $CONDA_PREFIX as described in PyTorch build instructions. 2. Fix the parsing of /etc/os-release The old code parses OS_DISTRO as 'PRETTY_Ubuntu' on Ubuntu and thus never links to libtinfo correctly.
petrex
pushed a commit
to petrex/pytorch
that referenced
this pull request
Sep 23, 2024
* Fix the parsing of /etc/os-release The old code parses OS_DISTRO as 'PRETTY_Ubuntu' on Ubuntu and thus never links to libtinfo correctly. * Configurable CMAKE_PREFIX_PATH in CI script.
jagadish-amd
pushed a commit
to jagadish-amd/pytorch
that referenced
this pull request
Jan 29, 2025
* Fix the parsing of /etc/os-release The old code parses OS_DISTRO as 'PRETTY_Ubuntu' on Ubuntu and thus never links to libtinfo correctly. * Configurable CMAKE_PREFIX_PATH in CI script.
This file contains hidden or 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
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.
collections.Iterable. Only list and tuples are instances ofcollections.Sequenceand only dicts are instances ofcollections.Mapping.Sasank.