Skip to content

Commit

Permalink
Fixed print
Browse files Browse the repository at this point in the history
  • Loading branch information
jmp1985 committed Oct 19, 2023
1 parent 4a46c14 commit c4bf2f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/multem/multem_ext.cu
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ namespace multem {
std::ostringstream msg;
msg << prefix << "precision: " << self.precision << "\n";
msg << prefix << "device: " << self.device << "\n";
msg << prefix << "cpu_ncores: " << self.precision << "\n";
msg << prefix << "cpu_nthread: " << self.precision << "\n";
msg << prefix << "gpu_device: " << self.precision << "\n";
msg << prefix << "gpu_nstream: " << self.precision << "\n";
msg << prefix << "cpu_ncores: " << self.cpu_ncores << "\n";
msg << prefix << "cpu_nthread: " << self.cpu_nthread << "\n";
msg << prefix << "gpu_device: " << self.gpu_device << "\n";
msg << prefix << "gpu_nstream: " << self.gpu_nstream << "\n";
return msg.str();
}

Expand Down

0 comments on commit c4bf2f0

Please sign in to comment.