summaryrefslogtreecommitdiff
path: root/test/correctness/routines
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2016-03-25 10:30:38 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2016-03-25 10:30:38 +0100
commit1d5a702d9d31afa320a15ed9fa79471aec314f4a (patch)
tree52a073c0909b23c8e2c29e467c19c81dbcf34f5a /test/correctness/routines
parent3876096c30ad4eed5769dbc88dbfe75b7571718a (diff)
Added prototypes for ScNRM2/DzNRM2 routines
Diffstat (limited to 'test/correctness/routines')
-rw-r--r--test/correctness/routines/level1/xnrm2.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/correctness/routines/level1/xnrm2.cc b/test/correctness/routines/level1/xnrm2.cc
index 8238e868..97fb0ad6 100644
--- a/test/correctness/routines/level1/xnrm2.cc
+++ b/test/correctness/routines/level1/xnrm2.cc
@@ -20,6 +20,8 @@ using double2 = clblast::double2;
int main(int argc, char *argv[]) {
clblast::RunTests<clblast::TestXnrm2<float>, float, float>(argc, argv, false, "SNRM2");
clblast::RunTests<clblast::TestXnrm2<double>, double, double>(argc, argv, true, "DNRM2");
+ clblast::RunTests<clblast::TestXnrm2<float2>, float2, float2>(argc, argv, true, "ScNRM2");
+ clblast::RunTests<clblast::TestXnrm2<double2>, double2, double2>(argc, argv, true, "DzNRM2");
return 0;
}