Migrated default base type of tensor to float

This commit is contained in:
Alejandro Saucedo 2020-08-31 16:01:27 +01:00
parent 00c66f347b
commit 08a1300450
13 changed files with 255 additions and 249 deletions

View file

@ -1,15 +1,15 @@
#version 450
layout(set = 0, binding = 0) buffer tensorLhs {
uint valuesLhs[ ];
float valuesLhs[ ];
};
layout(set = 0, binding = 1) buffer tensorRhs {
uint valuesRhs[ ];
float valuesRhs[ ];
};
layout(set = 0, binding = 2) buffer tensorOutput {
uint valuesOutput[ ];
float valuesOutput[ ];
};
layout (constant_id = 0) const uint LEN_LHS = 0;