Add little test

This commit is contained in:
Davis King 2020-01-20 07:58:50 -05:00
parent f71e49f28e
commit 0c415dbb4c
1 changed files with 5 additions and 0 deletions

View File

@ -58,6 +58,11 @@ namespace
void perform_test (
)
{
{
cuda::cuda_data_ptr<float> nonconst;
cuda::cuda_data_ptr<const float> const_ptr(nonconst);
}
test_inv();
{
resizable_tensor a(4,3), b(3,4), c(3,3);