Skip to content

Commit

Permalink
Address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
joeatodd committed Jan 21, 2025
1 parent 2c23440 commit 46505fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sycl/pvc/pvc_gemm_mixed_dtype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ struct Options {
/// Prints the usage statement.
std::ostream & print_usage(std::ostream &out) const {

out << "PVC GEMM Example\n\n"
out << "PVC GEMM Mixed Type Example\n\n"
<< "Options:\n\n"
<< " --help If specified, displays this usage statement\n\n"
<< " --m=<int> Sets the M extent of the GEMM\n"
Expand Down Expand Up @@ -146,7 +146,7 @@ struct ExampleRunner {

cutlass::DeviceAllocation<ElementA> block_A;
cutlass::DeviceAllocation<ElementB> block_B;
cutlass::DeviceAllocation<ElementB> block_A_dq;
cutlass::DeviceAllocation<ElementB> block_A_dq; // Dequantized copy of A for validation
cutlass::DeviceAllocation<ElementC> block_C;
cutlass::DeviceAllocation<ElementOutput> block_D;
cutlass::DeviceAllocation<ElementOutput> block_ref_D;
Expand Down

0 comments on commit 46505fb

Please sign in to comment.