Unverified Commit b9c140fe authored by Paul Fultz II's avatar Paul Fultz II Committed by GitHub
Browse files

Dont print literal data in hip_copy_literal (#609)


Co-authored-by: default avatarmvermeulen <5479696+mvermeulen@users.noreply.github.com>
parent d1caaaa1
...@@ -206,6 +206,11 @@ struct hip_copy_literal ...@@ -206,6 +206,11 @@ struct hip_copy_literal
argument a = to_gpu(l.get_argument()); argument a = to_gpu(l.get_argument());
store_preallocated_param(ctx, id, a); store_preallocated_param(ctx, id, a);
} }
friend std::ostream& operator<<(std::ostream& os, const hip_copy_literal& x)
{
os << x.name() << "[id=" << x.id << "]";
return os;
}
}; };
} // namespace gpu } // namespace gpu
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment