Every line of 'from math import sqrt' 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.
132 def sqrt(x: T.Tensor) -> T.Tensor: 133 """ 134 Elementwise square root of a tensor. 135 136 Args: 137 x (non-negative): A tensor. 138 139 Returns: 140 tensor(non-negative): Elementwise square root. 141 142 """ 143 return ne.evaluate('sqrt(x)')