core: Do not cast floor/ceil result to int

NumPy explicitly states that the return type of the floor/ceil is float.
pull/339/head
David Mak 2023-10-06 17:35:18 +08:00
parent 95810d4229
commit 068f0d9faf
1 changed files with 2 additions and 18 deletions

View File

@ -762,15 +762,7 @@ pub fn get_builtins(primitives: &mut (PrimitiveStore, Unifier)) -> BuiltinInfo {
.try_as_basic_value()
.left()
.unwrap();
Ok(Some(
ctx.builder
.build_float_to_signed_int(
val.into_float_value(),
ctx.ctx.i32_type(),
"fptosi",
)
.into(),
))
Ok(val.into())
},
)))),
loc: None,
@ -802,15 +794,7 @@ pub fn get_builtins(primitives: &mut (PrimitiveStore, Unifier)) -> BuiltinInfo {
.try_as_basic_value()
.left()
.unwrap();
Ok(Some(
ctx.builder
.build_float_to_signed_int(
val.into_float_value(),
ctx.ctx.i32_type(),
"fptosi",
)
.into(),
))
Ok(val.into())
},
)))),
loc: None,