-
Notifications
You must be signed in to change notification settings - Fork 0
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
unify types #40
Comments
At the moment is better that everything would be integer. If (host's) memory is the issue, then we must rethink this. |
This should do before we continue with #2 |
When I looked GPU and Memory, maybe it would be better to leave their types what they are now. |
At the moment I think I should replace every ushort with int: |
However I am not sure, where I should convert every byte to int. Byte is (should be faster), but also it gives a visual clue, what kind of data they are holding |
This is actually duplicate issue with: #4 data type as ushort or int? |
type of 8-bit values is byte and
type of 16-bit value is ushort (in CPU) and int in Memory.
Also there is a few methods that we can combine, if every type would be int.
The text was updated successfully, but these errors were encountered: