--- /dev/null
+#ifndef __COCO_IR_KERNEL_OBJECT_H__
+#define __COCO_IR_KERNEL_OBJECT_H__
+
+#include "coco/IR/Object.h"
+
+#include <nncc/core/ADT/kernel/Shape.h>
+
+namespace coco
+{
+
+/***
+ * @brief Convolution Kernel (in CNN) values
+ */
+class KernelObject final : public Object
+{
+public:
+ explicit KernelObject(const nncc::core::ADT::kernel::Shape &shape);
+
+public:
+ virtual ~KernelObject() = default;
+
+public:
+ const nncc::core::ADT::kernel::Shape &shape(void) const { return _shape; }
+
+private:
+ nncc::core::ADT::kernel::Shape const _shape;
+};
+
+} // namespace coco
+
+#endif // __COCO_IR_KERNEL_OBJECT_H__
--- /dev/null
+#include "coco/IR/KernelObject.h"
+
+#include <gtest/gtest.h>
+
+TEST(IR_KERNEL_OBJECT, ctor_should_set_size)
+{
+ const nncc::core::ADT::kernel::Shape shape{1, 1, 3, 3};
+ const coco::KernelObject o{shape};
+
+ // TODO Use ASSERT_EQ(o.shape(), shape) (operator== overload is not yet available)
+ ASSERT_EQ(o.shape().depth(), shape.depth());
+ ASSERT_EQ(o.shape().count(), shape.count());
+ ASSERT_EQ(o.shape().height(), shape.height());
+ ASSERT_EQ(o.shape().width(), shape.width());
+}