sam-t-pratt

Results 7 comments of sam-t-pratt

I am working on building out the byte codes that match my idea, which is highlighting for me that perhaps this isn't a documentation issue with `cbor2` and perhaps a...

After spending more time reading through the spec, I think that one reasonable sequence of bytes might look like the following. I used the [CBOR Playground](https://cbor.me) to test this. ```...

Yes, and that's where I think I am misunderstanding things. I have simple implementations of `default` and `tag_hook` for these types. In the case of these two, they're both wrappers...

To simplify things, I've created a small example script that is just the bare bones of what I'm trying to do: ``` from __future__ import annotations import cbor2 class Interval(tuple):...

That works for `Vector`, but that leads back to the original question - the encoder (and decoder) functions needed for `Vector` and `Interval` are different, so the encoding fails as...

Got it, thanks. I'll see how I can work around the inheritance issue. I think I can handle the callbacks by building functions that can handle nested types at runtime,...

Hey @shi-eric, sorry for the delay in responding; the issue ended up being that my Orin was on the incorrect CUDA version as you mentioned, but I managed to nuke...