Axiovora-X / jax /__init__.py
ZAIDX11's picture
Add files using upload-large-folder tool
deefe2e verified
"""Minimal stub for jax to avoid import errors during static checks.
This is a lightweight shim; it does NOT implement real JAX functionality.
"""
from typing import Any
def numpy():
import numpy as _np
return _np
def device_put(x: Any, device: Any = None) -> Any:
return x
class lax:
@staticmethod
def add(a, b):
return a + b