(a, b)
| 2869 | cotangent = mx.array(cotangent) |
| 2870 | |
| 2871 | def bitwise(a, b): |
| 2872 | return a.astype(mx.int32) & b.astype(mx.int32) |
| 2873 | |
| 2874 | _, vjps = mx.vjp(bitwise, [a, b], [cotangent]) |
| 2875 | for vjp in vjps: |
nothing calls this directly
no outgoing calls
no test coverage detected