JackCaoG

Results 34 issues of JackCaoG

Fix https://github.com/pytorch/xla/issues/3880 Fix https://github.com/pytorch/xla/issues/3881 LazyIr ``` class NeScalar : public XlaNode { public: static torch::lazy::OpKind ClassOpKind() { return torch::lazy::OpKind(at::aten::ne); } NeScalar(const torch::lazy::Value& self, const torch::lazy::Value& other, std::vector&& shapes) : XlaNode(torch::lazy::OpKind(at::aten::ne),...

codegen

Fix https://github.com/pytorch/xla/issues/3877 Fix https://github.com/pytorch/xla/issues/3878 LazyIr ``` class EqScalar : public XlaNode { public: static torch::lazy::OpKind ClassOpKind() { return torch::lazy::OpKind(at::aten::eq); } EqScalar(const torch::lazy::Value& self, const torch::lazy::Value& other, std::vector&& shapes) : XlaNode(torch::lazy::OpKind(at::aten::eq),...

codegen

Fix https://github.com/pytorch/xla/issues/3872 Fix https://github.com/pytorch/xla/issues/3873 Fix https://github.com/pytorch/xla/issues/3874 Fix https://github.com/pytorch/xla/issues/3875 LazyIr ``` class LeScalar : public XlaNode { public: static torch::lazy::OpKind ClassOpKind() { return torch::lazy::OpKind(at::aten::le); } LeScalar(const torch::lazy::Value& self, const torch::lazy::Value& other,...

codegen