diff --git a/loopy/codegen/instruction.py b/loopy/codegen/instruction.py index 06803f76ed5fa6378930d8afaf1ba869ea83e8f7..871ed10a7b4c12aa799002ae5213d400a2ef961f 100644 --- a/loopy/codegen/instruction.py +++ b/loopy/codegen/instruction.py @@ -152,13 +152,13 @@ def generate_expr_instruction_code(kernel, insn, codegen_state): for i in assignee_indices) if kernel.options.trace_assignment_values: - if target_dtype.kind == "i": + if lhs_dtype.numpy_dtype.kind == "i": printf_format += " = %d" printf_args.append(lhs_code) - elif target_dtype.kind == "f": + elif lhs_dtype.numpy_dtype.kind == "f": printf_format += " = %g" printf_args.append(lhs_code) - elif target_dtype.kind == "c": + elif lhs_dtype.numpy_dtype.kind == "c": printf_format += " = %g + %gj" printf_args.extend([ "(%s).x" % lhs_code,