Skip to content

Commit 466356d

Browse files
authored
Remove outdated comment (#3829)
The changes associated with the comment were removed in earlier PRs. The comment is no longer applicable to the code; removing it for clarity.
1 parent d21df7c commit 466356d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/targets/gpu/fuse_ops.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,6 @@ struct find_rocblas_gemm_pointwise : gemm_pointwise
675675
auto c_ins = r.instructions["c"];
676676
shape s = c_ins->get_shape();
677677
// const-fold input if not standard shape since rocblas can't handle it
678-
// Updated for a case where "standard" shape has out-of-sequence strides
679678
if(not s.standard())
680679
{
681680
auto c = make_op("contiguous");
@@ -736,7 +735,6 @@ struct find_hipblas_gemm_pointwise : gemm_pointwise
736735
auto c_ins = r.instructions["c"];
737736
shape s = c_ins->get_shape();
738737
// const-fold input if not standard shape
739-
// Updated for a case where "standard" shape has out-of-sequence strides
740738
if(not s.standard())
741739
{
742740
auto c = make_op("contiguous");

0 commit comments

Comments
 (0)