Every line of 'ceil in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
30 def ceil(x): 31 return Ceil(float(x))
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
191 def ceil_n(input_data, n): 192 """ Return the ceiling of the input, element-wise closed to devider n.""" 193 return int(n * np.ceil(input_data / n))
272 def ceil32(x): 273 return x if x % 32 == 0 else x + 32 - (x % 32)