-
Notifications
You must be signed in to change notification settings - Fork 4
Unittest
Dian-Lun Lin (Luan) edited this page Oct 22, 2023
·
1 revision
~/$ cd taro/
~/taro$ mkdir build
$ cd build
~/taro/build$ cmake ../
$ make -j8
$ make test
To build CUDA unittests, add cmake ../ -DTARO_BUILD_CUDA=ON
.
To build SYCL unittest, add cmake ../ -DTARO_BUILD_SYCL=ON -DTARO_BUILD_SYCL_BITCODE=ptx64
~/$ cd taro/
~/taro$ mkdir build
$ cd build
~/taro/build$ cmake ../ -DTARO_BUILD_CUDA=ON -DTARO_BUILD_SYCL=ON -DTARO_BUILD_SYCL_BITCODE=ptx64
$ make -j8
$ make test
TBD
TBD