summaryrefslogtreecommitdiff
path: root/test/routines
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-11-08 21:20:07 +0100
committerCedric Nugteren <web@cedricnugteren.nl>2017-11-08 21:20:07 +0100
commitd24138808b42368a4dfe67fc9bdef546b6c358e8 (patch)
tree584aa01ff1f9c8fd225b5ec075d0a9e01178b016 /test/routines
parentb18cc9d3f18accf88c9551c98c51b99add57b96c (diff)
Fixed an FP16 issue in the homatcopy test; added a comment about improper testing of integer returning functions for FP16
Diffstat (limited to 'test/routines')
-rw-r--r--test/routines/levelx/xomatcopy.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/routines/levelx/xomatcopy.hpp b/test/routines/levelx/xomatcopy.hpp
index 70bda452..477d6da6 100644
--- a/test/routines/levelx/xomatcopy.hpp
+++ b/test/routines/levelx/xomatcopy.hpp
@@ -65,7 +65,7 @@ StatusCode RunReference<half>(const Arguments<half> &args, BuffersHost<half> &bu
args2.layout = args.layout; args2.a_transpose = args.a_transpose;
args2.alpha = HalfToFloat(args.alpha);
auto status = RunReference(args2, buffers2);
- FloatToHalfBuffer(buffers_host.b_mat, b_buffer2);
+ FloatToHalfBuffer(buffers_host.b_mat, buffers2.b_mat);
return status;
}