Remove old layout and elementwise ops.

This commit is contained in:
Ville Pietilä
2026-01-13 02:44:54 -05:00
parent 3e8f3907f2
commit b5d060b6b3
2 changed files with 0 additions and 10 deletions

View File

@@ -71,11 +71,6 @@ struct ConvElementwiseOps
using InElementwiseOp = typename decltype(input_op)::Op;
using WeiElementwiseOp = typename decltype(weight_op)::Op;
using OutElementwiseOp = typename decltype(output_op)::Op;
// TODO: Remove, now left for compatibility. Factories do not need it anymore.
// using AElementwiseOp = InElementwiseOp;
// using BElementwiseOp = WeiElementwiseOp;
// using CDEElementwiseOp = OutElementwiseOp;
};
} // namespace ck_tile::builder::factory::internal

View File

@@ -226,11 +226,6 @@ struct ConvTensorLayouts
using WeiLayout = decltype(TensorLayoutToCK<Signature.weight.config.layout>());
using OutLayout = decltype(TensorLayoutToCK<Signature.output.config.layout>());
using DsLayout = decltype(GetAuxiliaryTensorLayouts<Signature, SPATIAL_DIM>())::type;
// TODO: Remove,now left for compatibility. Factories do not need it anymore.
// using ALayout = InLayout;
// using BLayout = WeiLayout;
// using ELayout = OutLayout;
};
} // namespace ck_tile::builder::factory::internal