Skip to content

Commit

Permalink
Release v1 (#1596)
Browse files Browse the repository at this point in the history
* test

* test

* test
  • Loading branch information
atalman authored Nov 16, 2023
1 parent 00b194a commit 426b719
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions test/smoke_test/smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import sys
import argparse
import torch
import json
import importlib
import subprocess
import torch._dynamo
Expand All @@ -15,6 +16,7 @@
stable_version = os.getenv("MATRIX_STABLE_VERSION")
package_type = os.getenv("MATRIX_PACKAGE_TYPE")
target_os = os.getenv("TARGET_OS")
BASE_DIR = Path(__file__).parent.parent

is_cuda_system = gpu_arch_type == "cuda"
NIGHTLY_ALLOWED_DELTA = 3
Expand Down Expand Up @@ -54,11 +56,8 @@ def forward(self, x):

def load_json_from_basedir(filename: str):
try:
if os.path.exists(BASE_DIR / filename):
with open(BASE_DIR / filename) as fptr:
return json.load(fptr)
else:
return None
with open(BASE_DIR / filename) as fptr:
return json.load(fptr)
except FileNotFoundError as exc:
raise ImportError(f"File {filename} not found error: {exc.strerror}") from exc
except json.JSONDecodeError as exc:
Expand Down

0 comments on commit 426b719

Please sign in to comment.