mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 18:42:06 +00:00
12 lines
318 B
Python
12 lines
318 B
Python
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
import json
|
|
|
|
|
|
class ReduceConfig:
|
|
def __init__(self, config_json_path: str):
|
|
self.config_json_path = config_json_path
|
|
with open(config_json_path, "r") as f:
|
|
self.config_dict = json.load(f)
|