Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/cutlass/gemm/device/gemm_universal.h
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ class GemmUniversal<ElementA_, LayoutA_, ElementB_, LayoutB_, ElementC_,
}

/// Lightweight update given a subset of arguments
Status update(Arguments const &args, void *workspace = nullptr) {
Status update(Arguments const &args) {

return underlying_operator_.update(to_underlying_arguments(args), workspace);
return underlying_operator_.update(to_underlying_arguments(args));
}

/// Runs the kernel using initialized state.
Expand Down