Skip to content

Commit

Permalink
Fixed bug in js file
Browse files Browse the repository at this point in the history
  • Loading branch information
amirbawab committed Jun 14, 2019
1 parent 7de33c8 commit 36c9a4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nn-builder/js/compiled_model.js
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ class CompiledModel {
for (let i = 0; i < rows * cols; i++) {
if (mat1[i] !== mat2[i]) {
console.error("Matrix equality failed!");
imports.System.print_table_f32(mat1_index, rows, cols);
imports.System.print_table_f32(mat2_index, rows, cols);
system_imports.print_table_f32(mat1_index, rows, cols);
system_imports.print_table_f32(mat2_index, rows, cols);
return;
}
}
Expand Down

0 comments on commit 36c9a4e

Please sign in to comment.