From 1d7db890801673e9365c322d01064ee44b9d78e7 Mon Sep 17 00:00:00 2001
From: Robin De Schepper <robin.deschepper93@gmail.com>
Date: Thu, 21 Oct 2021 15:21:55 +0200
Subject: [PATCH] Completed the docs with more `config()` flags (#1708)

---
 doc/python/hardware.rst | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/doc/python/hardware.rst b/doc/python/hardware.rst
index f1d02880..f1eb88fc 100644
--- a/doc/python/hardware.rst
+++ b/doc/python/hardware.rst
@@ -22,7 +22,10 @@ Helper functions for checking cmake or environment variables, as well as configu
     * ``ARB_MPI_ENABLED``
     * ``ARB_WITH_MPI4PY``
     * ``ARB_GPU_ENABLED``
+    * ``ARB_VECTORIZE``
+    * ``ARB_WITH_PROFILING``
     * ``ARB_VERSION``
+    * ``ARB_ARCH``
 
     .. container:: example-code
 
@@ -31,7 +34,7 @@ Helper functions for checking cmake or environment variables, as well as configu
             import arbor
             arbor.config()
 
-            {'mpi': True, 'mpi4py': True, 'gpu': False, 'version': '0.2.1-dev'}
+            {'mpi': True, 'mpi4py': True, 'gpu': False, 'vectorize': True, 'profiling': True, 'version': '0.5.3-dev', 'arch': 'native'}
 
 .. function:: mpi_init()
 
-- 
GitLab