# -----------------------------------------------------------------------------------------------------------
# Copyright (c) 2025 Huawei Technologies Co., Ltd.
# This program is free software, you can redistribute it and/or modify it under the terms and conditions of
# CANN Open Software License Agreement Version 2.0 (the "License").
# Please refer to the License for details. You may not use this file except in compliance with the License.
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
# See LICENSE in the root of the software repository for the full text of the License.
# -----------------------------------------------------------------------------------------------------------
import sys
import hashlib
import numpy as np
def result_compare():
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('output', type=str)
parser.add_argument('golden', type=str)
args = parser.parse_args()
output = np.fromfile(args.output, dtype=np.float16)
golden = np.fromfile(args.golden, dtype=np.float16)
md5hash_output = hashlib.md5(output)
md5hash_golden = hashlib.md5(golden)
md5_output = md5hash_output.hexdigest()
md5_golden = md5hash_golden.hexdigest()
if md5_output == md5_golden:
print("SUCCESS")
sys.exit(0)
else:
print("FAILED")
sys.exit(1)
if __name__ == "__main__":
result_compare()