From 0aed94052f2bd0fa2f53ea878c503289c33d8b80 Mon Sep 17 00:00:00 2001 From: Elizabeth <hashim.sharif91@gmail.com> Date: Sun, 13 Oct 2019 17:57:31 -0500 Subject: [PATCH] Adding missing declaration for wrapper_tensorSoftmax --- .../hpvm-tensor-rt/tensor_runtime/include/tensor_signatures.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/projects/hpvm-tensor-rt/tensor_runtime/include/tensor_signatures.cc b/llvm/projects/hpvm-tensor-rt/tensor_runtime/include/tensor_signatures.cc index e7784cb18e..e894788176 100644 --- a/llvm/projects/hpvm-tensor-rt/tensor_runtime/include/tensor_signatures.cc +++ b/llvm/projects/hpvm-tensor-rt/tensor_runtime/include/tensor_signatures.cc @@ -53,5 +53,6 @@ void dummyFunction(){ void* TanhWrapper = (void*) &wrapper_tensorTanh; void* BatchNormWrapper = (void*) &wrapper_tensorBatchNorm; void* PoolingWrapper = (void*) &wrapper_tensorPooling; + void* softmaxWrapper = (void*) &wrapper_tensorSoftmax; } -- GitLab