Skip to content
Snippets Groups Projects
Commit 616f609f authored by Richard Angersbach's avatar Richard Angersbach
Browse files

Fix lint [skip ci]

parent 0fb11858
1 merge request!438Reduction Support
Pipeline #73203 skipped
......@@ -85,7 +85,8 @@ class CudaPlatform(GenericGpu):
arg_types = (dtype,) * func.num_args
if isinstance(dtype, PsScalarType) and func in (NumericLimitsFunctions.Min, NumericLimitsFunctions.Max):
return PsLiteralExpr(PsLiteral(f"::cuda::std::numeric_limits<{dtype.c_string()}>::{func.function_name}()", dtype))
return PsLiteralExpr(
PsLiteral(f"::cuda::std::numeric_limits<{dtype.c_string()}>::{func.function_name}()", dtype))
if isinstance(dtype, PsIeeeFloatType):
match func:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment