class GraphModule(torch.nn.Module):
    def forward(self, L_x_: "f32[6][1]cpu"):
        l_x_ = L_x_

        # File: /Users/aps/Documents/ChatGPT/Job Apps/dynamo-diff/.cache/pilot-worker/model.py:9 in forward, code: return x.cos() * argument + id(self)
        cos: "f32[6][1]cpu" = l_x_.cos();  l_x_ = None
        mul: "f32[6][1]cpu" = cos * 2;  cos = None
        add: "f32[6][1]cpu" = mul + 4447769680;  mul = None
        return (add,)
