Buckets:
| # Copyright (c) 2025 SandAI. All Rights Reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| import shutil | |
| import pytest | |
| import torch | |
| from magi_compiler.config import get_compile_config | |
| from .model_definition import MLPConfig, RMSNormConfig | |
| def device(): | |
| """Device fixture""" | |
| return torch.device("cuda" if torch.cuda.is_available() else "cpu") | |
| def mlp_config(): | |
| """MLP configuration fixture""" | |
| return MLPConfig(hidden_size=8, intermediate_size=32, params_dtype=torch.bfloat16) | |
| def rms_norm_config(): | |
| """RMSNorm configuration fixture""" | |
| return RMSNormConfig(hidden_size=8, eps=1e-6) | |
| def cleanup_cache(): | |
| """Auto cleanup cache fixture, executed before and after each test""" | |
| shutil.rmtree(get_compile_config().cache_root_dir, ignore_errors=True) | |
| yield | |
| shutil.rmtree(get_compile_config().cache_root_dir, ignore_errors=True) | |
Xet Storage Details
- Size:
- 1.53 kB
- Xet hash:
- 980b6528eff306266cd0c5c384eebb5a56cdf1e7b2549887067d4a8cb9aee655
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.