mirror of
https://github.com/huggingface/candle.git
synced 2025-06-16 10:38:54 +00:00
Optimize the gelu f16 opt. (#2008)
* Optimize the gelu f16 opt. * And add a test.
This commit is contained in:
@ -106,6 +106,14 @@ fn unary_op(device: &Device) -> Result<()> {
|
||||
[2.6911, -0.0647, -0.1091, 1.7353, 2.7933]
|
||||
]
|
||||
);
|
||||
let t_f16 = tensor.to_dtype(DType::F16)?.gelu()?.to_dtype(DType::F32)?;
|
||||
assert_eq!(
|
||||
test_utils::to_vec2_round(&t_f16, 2)?,
|
||||
[
|
||||
[-0.0, 0.84, 4.0, -0.05, 0.35],
|
||||
[2.69, -0.07, -0.11, 1.73, 2.79]
|
||||
],
|
||||
);
|
||||
assert_eq!(
|
||||
test_utils::to_vec2_round(&tensor.gelu_erf()?, 4)?,
|
||||
[
|
||||
|
Reference in New Issue
Block a user