File size: 393 Bytes
fc93158 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import json
import torch
def run_smoke():
print(
json.dumps(
{
"ok": True,
"core_profile": f"torch-{torch.__version__}",
"available_profiles": ["torch"],
"n_input": 0,
"n_actions": 0,
"d_state": 0,
}
)
)
if __name__ == "__main__":
run_smoke()
|