We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
aten::__iand_
from torch
// NB: we always take the scalar type of the Tensor static const register_formula_for broadcasting_tensor_scalar_ops{ { "aten::pow(Tensor self, Scalar exponent) -> Tensor", "aten::fmod(Tensor self, Scalar other) -> Tensor", "aten::remainder(Tensor self, Scalar other) -> Tensor", "aten::pow(Scalar self, Tensor exponent) -> Tensor", "aten::__and__(Tensor self, Scalar other) -> Tensor", "aten::__or__(Tensor self, Scalar other) -> Tensor", "aten::__xor__(Tensor self, Scalar other) -> Tensor", "aten::__lshift__(Tensor self, Scalar other) -> Tensor", "aten::__rshift__(Tensor self, Scalar other) -> Tensor", "aten::__iand__(Tensor self, Scalar other) -> Tensor", "aten::__ior__(Tensor self, Scalar other) -> Tensor", "aten::__ixor__(Tensor self, Scalar other) -> Tensor", "aten::__ilshift__(Tensor self, Scalar other) -> Tensor", "aten::__irshift__(Tensor self, Scalar other) -> Tensor", },
The text was updated successfully, but these errors were encountered:
定位发现 是
cmask &= thresh_mask[i]
导致的, 改成如下:
cmask = cmask & thresh_mask[i]
Sorry, something went wrong.
No branches or pull requests
aten::__iand_
from torch
The text was updated successfully, but these errors were encountered: