Skip to content

Commit b717b58

Browse files
Update exports
1 parent 71ae607 commit b717b58

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

src/VectorizedReduction.jl

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
module VectorizedReduction
22

33
using LoopVectorization, Static
4+
include("utils.jl")
5+
46

57
export vvmapreduce, vvmapreduce!, vvreduce, vvsum, vvprod, vvmaximum, vvminimum,
68
vtmapreduce, vtmapreduce!, vtreduce, vtsum, vtprod, vtmaximum, vtminimum
@@ -39,4 +41,46 @@ export vsoftmax, vtsoftmax
3941

4042
include("vsoftmax.jl")
4143

44+
export vnorm, vtnorm
45+
46+
include("vnorm.jl")
47+
48+
export vminkowski, vtminkowski,
49+
vmanhattan, vtmanhattan,
50+
veuclidean, vteuclidean,
51+
vchebyshev, vtchebyshev
52+
53+
include("vdistance.jl")
54+
55+
export vmean, vtmean,
56+
vgeomean, vtgeomean,
57+
vharmmean, vtharmmean,
58+
vmean_log, vtmean_log
59+
60+
export vlse, vtlse,
61+
vlse_mean, vtlse_mean
62+
63+
export ventropy, vtentropy,
64+
vcrossentropy, vtcrossentropy,
65+
vmaxentropy, vtmaxentropy,
66+
vshannonentropy, vtshannonentropy,
67+
vcollisionentropy, vtcollisionentropy,
68+
vminentropy, vtminentropy,
69+
vrenyientropy, vtrenyientropy
70+
71+
export vkldivergence, vtkldivergence,
72+
vgkldiv, vtgkldiv,
73+
vrenyadivergence, vtrenyadivergence
74+
75+
export vcounteq, vtcounteq,
76+
vcountne, vtcountne,
77+
vmeanad, vtmeanad,
78+
vmaxad, vtmaxad,
79+
vmse, vtmse,
80+
vrmse, vtrmse,
81+
vmsd, vtmsd,
82+
vrmsd, vtrmsd
83+
84+
include("vstats.jl")
85+
4286
end

0 commit comments

Comments
 (0)