Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/cutorch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrevor Killeen <killeentm@gmail.com>2016-09-27 20:21:20 +0300
committerTrevor Killeen <killeentm@gmail.com>2016-10-07 21:50:27 +0300
commite103982479048babf915b2afcf0012593409b9e5 (patch)
tree3eec281a83f0ac0c8558eebebdc7f372f49791bf /lib/THC/generic/THCTensorMathReduce.h
parent72123175666a3860a093fc7fa5ea26628b89d379 (diff)
Make _norm(...)'s ops generic
Diffstat (limited to 'lib/THC/generic/THCTensorMathReduce.h')
-rw-r--r--lib/THC/generic/THCTensorMathReduce.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/THC/generic/THCTensorMathReduce.h b/lib/THC/generic/THCTensorMathReduce.h
index d25317e..9e19f52 100644
--- a/lib/THC/generic/THCTensorMathReduce.h
+++ b/lib/THC/generic/THCTensorMathReduce.h
@@ -6,7 +6,7 @@
THC_API void THCTensor_(renorm)(THCState *state, THCTensor* self, THCTensor* src, real value, long dimension, real max_norm);
THC_API void THCTensor_(std)(THCState *state, THCTensor *self, THCTensor *src, long dim, int flag);
-THC_API void THTensor_(norm)(THCState *state, THCTensor* self, THCTensor* src, real value, long dimension);
+THC_API void THCTensor_(norm)(THCState *state, THCTensor* self, THCTensor* src, real value, long dimension);
#endif