From 4d1e0b181533cbc759dc6b0e0f2f96cc35b90efd Mon Sep 17 00:00:00 2001
From: Bram Veenboer <bram.veenboer@gmail.com>
Date: Thu, 10 Aug 2023 10:49:10 +0200
Subject: [PATCH] Update README

---
 README.md | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 6164de7..91d876d 100644
--- a/README.md
+++ b/README.md
@@ -13,18 +13,13 @@ _Astronomy and Astrophysics_, 656(A32), pages 1-4, December 2021).
 
 Clone the repository (`git clone https://git.astron.nl/RD/tensor-core-correlator.git`)
 
-Build [cudawrappers](https://github.com/nlesc-recruit/cudawrappers):
+Build the library:
 ```
-cd external/cuda-wrappers
 mkdir build-$(arch)
 cd build-$(arch)
-cmake -DCMAKE_INSTALL_PREFIX=$(pwd) ..
-make install
-cd ../../..
+cmake ..
+make
 ```
-In a later release, cudawrappers wil be header-only and this step will no longer be needed.
-
-Build the library (just type `make`)
 
 Include `libtcc/Correlator.h`, and link with `libtcc/libtcc.so`.
 Create a `tcc::Correlator` object with the number of receivers, channels, etc.
-- 
GitLab