* test=develop, fix softmax
@ -47,6 +47,7 @@ class TestSoftmaxOp(OpTest):
self.shape = self.get_x_shape()
self.axis = self.get_axis()
np.random.seed(0)
x = np.random.uniform(0.1, 1, self.shape).astype(self.dtype)
out = np.apply_along_axis(stable_softmax, self.axis, x)