summaryrefslogtreecommitdiffhomepage
path: root/example/simple_allocator_op/example.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-17 14:53:59 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-17 14:53:59 +0100
commitd54c2033eaaad5b6f9340b7cbaf8b3b037fb3cbe (patch)
treec9506ad751a589c0a734b26900f48581d1dde2ce /example/simple_allocator_op/example.cc
parent15aac395a599c92016bd2d74a7c23ca6eea3d04d (diff)
chore: updated file structure.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'example/simple_allocator_op/example.cc')
-rw-r--r--example/simple_allocator_op/example.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/example/simple_allocator_op/example.cc b/example/simple_allocator_op/example.cc
new file mode 100644
index 0000000..83be033
--- /dev/null
+++ b/example/simple_allocator_op/example.cc
@@ -0,0 +1,14 @@
+#include <ocl/print.hpp>
+#include <ocl/allocator_op.hpp>
+
+/// @brief Basic Send test
+int main()
+{
+ ocl::allocator<int> int_alloc;
+ auto foo = int_alloc.construct_array<1>();
+
+ *foo = 67;
+ ocl::io::print(*foo);
+
+ return EXIT_SUCCESS;
+}