2

Does TensorFlow support boolean tensors where every element occupies just 1 bit (not 8) ? Can I define large tensors ~100 MB ?

Where can I read about it ?

Couldn't find anything searching on Internet, thats why I'm asking.

1 Answer 1

1

Tensorflow DT_BOOL tensors map to the underlying C++ bool type, which does not take 1 bit of memory.

You can implement your own operations on a Variant dtype, but it requires quite a bit of C++ coding.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.