Skip to content
Snippets Groups Projects
Commit ea23f11b authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Use float32 instead of float in test_genereric_projection

parent 2bd13c14
Branches
Tags
No related merge requests found
...@@ -43,7 +43,7 @@ def test_genereric_projection(): ...@@ -43,7 +43,7 @@ def test_genereric_projection():
volume = pystencils.fields('volume: float32[3d]') volume = pystencils.fields('volume: float32[3d]')
projections = pystencils.fields('projections: float32[2D]') projections = pystencils.fields('projections: float32[2D]')
projection_matrix = pystencils_reco.matrix_symbols('T', pystencils.data_types.create_type('float'), 3, 4) projection_matrix = pystencils_reco.matrix_symbols('T', pystencils.data_types.create_type('float32'), 3, 4)
assignments = forward_projection(volume, projections, projection_matrix) assignments = forward_projection(volume, projections, projection_matrix)
print(assignments) print(assignments)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment