summaryrefslogtreecommitdiff
path: root/candle-nn/tests/ops.rs
diff options
context:
space:
mode:
authorMilkFather <31627231+MilkFather@users.noreply.github.com>2024-04-29 17:04:43 +0800
committerGitHub <noreply@github.com>2024-04-29 11:04:43 +0200
commit3bbb88fcb463a6bdbb0e71c7b2d211dd02681493 (patch)
tree6077a6f41f7b1ed97b6f44d5e8305126c0d5f5a5 /candle-nn/tests/ops.rs
parented7b99f525ab898aa677fe1f4446e345ac74f4ec (diff)
downloadcandle-3bbb88fcb463a6bdbb0e71c7b2d211dd02681493.tar.gz
candle-3bbb88fcb463a6bdbb0e71c7b2d211dd02681493.tar.bz2
candle-3bbb88fcb463a6bdbb0e71c7b2d211dd02681493.zip
Fix sigmoid gradient calculation and move sigmoid into a specialized op (#2114)
* add sigmoid op * small fix * add as a method on `Tensor` * implement gradient calculation for sigmoid * add sigmoid tests * we should have a specialized op for this * fix clippy * fix clippy 2 * Revert all previous commits in favor of a `CustomOp` based solution * use `CustomOp1` implementation * fix rustfmt * experimental add metal impl * add cuda kernel impl * fix fmt * Add a test + reduce some cuda duplication. --------- Co-authored-by: laurent <laurent.mazare@gmail.com>
Diffstat (limited to 'candle-nn/tests/ops.rs')
-rw-r--r--candle-nn/tests/ops.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/candle-nn/tests/ops.rs b/candle-nn/tests/ops.rs
index 24a49d06..f9cfe46d 100644
--- a/candle-nn/tests/ops.rs
+++ b/candle-nn/tests/ops.rs
@@ -170,8 +170,19 @@ fn rope_thd(device: &Device) -> Result<()> {
Ok(())
}
+fn sigmoid(device: &Device) -> Result<()> {
+ let data = &[[[3f32, 1., 4.], [1., 5., 9.]], [[2., 1., 7.], [8., 2., 8.]]];
+ let tensor = Tensor::new(data, device)?;
+ let s1 = candle_nn::ops::sigmoid(&tensor)?;
+ let s2 = (1. / (1. + tensor.neg()?.exp()?)?)?;
+ let diff = (s1 - s2)?.abs()?.sum_all()?.to_vec0::<f32>()?;
+ assert_eq!(diff, 0.);
+ Ok(())
+}
+
test_device!(ropei, ropei_cpu, ropei_gpu, ropei_metal);
test_device!(rope, rope_cpu, rope_gpu, rope_metal);
test_device!(rope_thd, rope_thd_cpu, rope_thd_gpu, rope_thd_metal);
test_device!(softmax, softmax_cpu, softmax_gpu, softmax_metal);
test_device!(rms_norm, rms_norm_cpu, rms_norm_gpu, rms_norm_metal);
+test_device!(sigmoid, sigmoid_cpu, sigmoid_gpu, sigmoid_metal);