-
Notifications
You must be signed in to change notification settings - Fork 133
Extension Scalars #6477
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
Draft
connortsui20
wants to merge
1
commit into
develop
Choose a base branch
from
ct/ext-scalar
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Extension Scalars #6477
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,14 +14,20 @@ use vortex_dtype::ExtDTypeRef; | |
| use vortex_dtype::NativePType; | ||
| use vortex_dtype::Nullability; | ||
| use vortex_dtype::PType; | ||
| use vortex_dtype::extension::ExtDTypeVTable; | ||
| use vortex_error::VortexExpect; | ||
| use vortex_error::VortexResult; | ||
| use vortex_error::vortex_ensure_eq; | ||
| use vortex_error::vortex_err; | ||
| use vortex_error::vortex_panic; | ||
| use vortex_session::VortexSession; | ||
|
|
||
| use crate::DecimalValue; | ||
| use crate::PValue; | ||
| use crate::Scalar; | ||
| use crate::ScalarValue; | ||
| use crate::extension::ExtScalarVTable; | ||
| use crate::extension::ExtScalarValue; | ||
| use crate::session::ScalarSessionExt; | ||
|
|
||
| // TODO(connor): Really, we want `try_` constructors that return errors instead of just panic. | ||
| impl Scalar { | ||
|
|
@@ -170,27 +176,57 @@ impl Scalar { | |
| .vortex_expect("unable to construct a list `Scalar`") | ||
| } | ||
|
|
||
| /// Creates a new extension scalar wrapping the given storage value. | ||
| pub fn extension<V: ExtDTypeVTable + Default>(options: V::Metadata, value: Scalar) -> Self { | ||
| let ext_dtype = ExtDType::<V>::try_new(options, value.dtype().clone()) | ||
| .vortex_expect("Failed to create extension dtype"); | ||
| Self::try_new(DType::Extension(ext_dtype.erased()), value.into_value()) | ||
| .vortex_expect("unable to construct an extension `Scalar`") | ||
| } | ||
|
|
||
| // TODO(connor): This needs to return a `VortexResult` instead. | ||
| /// Creates a new extension scalar wrapping the given storage value. | ||
| /// | ||
| /// # Panics | ||
| /// | ||
| /// Panics if the storage dtype of `ext_dtype` does not match `value`'s dtype. | ||
| pub fn extension_ref(ext_dtype: ExtDTypeRef, value: Scalar) -> Self { | ||
| assert_eq!(ext_dtype.storage_dtype(), value.dtype()); | ||
| Self::try_new(DType::Extension(ext_dtype), value.into_value()) | ||
| /// Panics if the storage dtype is incompatible with the extension type, or if the storage | ||
| /// value fails validation. | ||
| pub fn extension<V: ExtScalarVTable + Default>(metadata: V::Metadata, value: Scalar) -> Self { | ||
| let ext_dtype = ExtDType::<V>::try_new(metadata, value.dtype().clone()) | ||
| .vortex_expect("Failed to create extension dtype"); | ||
| let storage_value = value.into_value(); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can |
||
|
|
||
| let ext_value = storage_value.map(|sv| { | ||
| let owned = ExtScalarValue::<V>::try_new(ext_dtype.clone(), sv) | ||
| .vortex_expect("unable to construct an extension `Scalar`"); | ||
| ScalarValue::Extension(owned.erased()) | ||
| }); | ||
|
|
||
| Self::try_new(DType::Extension(ext_dtype.erased()), ext_value) | ||
| .vortex_expect("unable to construct an extension `Scalar`") | ||
| } | ||
|
|
||
| /// TODO docs. | ||
| pub fn extension_ref( | ||
| ext_dtype: ExtDTypeRef, | ||
| value: Scalar, | ||
| session: &VortexSession, | ||
| ) -> VortexResult<Self> { | ||
| let (storage_dtype, storage_value) = value.into_parts(); | ||
| Self::extension_ref_from_value(ext_dtype, &storage_dtype, storage_value, session) | ||
| } | ||
|
|
||
| /// TODO docs. | ||
| pub fn extension_ref_from_value( | ||
| ext_dtype: ExtDTypeRef, | ||
| storage_dtype: &DType, | ||
| storage_value: Option<ScalarValue>, | ||
| session: &VortexSession, | ||
| ) -> VortexResult<Self> { | ||
| vortex_ensure_eq!(ext_dtype.storage_dtype(), storage_dtype); | ||
|
|
||
| let ext_value = Self::extension_value(&ext_dtype, storage_value, session)?; | ||
|
|
||
| Ok( | ||
| // SAFETY: `create_ext_scalar_value_ref` validates that the scalar value is compatible. | ||
| unsafe { Scalar::new_unchecked(DType::Extension(ext_dtype), ext_value) }, | ||
| ) | ||
| } | ||
| } | ||
|
|
||
| /// A helper enum for creating a [`ListScalar`]. | ||
| /// A helper enum for creating a list scalar. | ||
| enum ListKind { | ||
| /// Variable-length list. | ||
| Variable, | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
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.
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.
This should still panic shouldn't it?