fix(agbench): add encoding='utf-8' to open() calls in GAIA benchmark scripts#7659
Open
Ghraven wants to merge 3 commits intomicrosoft:mainfrom
Open
fix(agbench): add encoding='utf-8' to open() calls in GAIA benchmark scripts#7659Ghraven wants to merge 3 commits intomicrosoft:mainfrom
Ghraven wants to merge 3 commits intomicrosoft:mainfrom
Conversation
Addresses microsoft#5566 Without an explicit encoding, `open()` uses the system default locale encoding, which is not UTF-8 on many Windows installations. This causes `UnicodeDecodeError` when reading files containing non-ASCII characters in non-English environments. Fix: add `encoding='utf-8'` to all `open()` calls in the GAIA benchmark scripts.
Addresses microsoft#5566 Without an explicit encoding, `open()` uses the system default locale encoding, which is not UTF-8 on many Windows installations. This causes `UnicodeDecodeError` when reading files containing non-ASCII characters in non-English environments. Fix: add `encoding='utf-8'` to all `open()` calls in the GAIA benchmark scripts.
Addresses microsoft#5566 Without an explicit encoding, `open()` uses the system default locale encoding, which is not UTF-8 on many Windows installations. This causes `UnicodeDecodeError` when reading files containing non-ASCII characters in non-English environments. Fix: add `encoding='utf-8'` to all `open()` calls in the GAIA benchmark scripts.
Author
|
@microsoft-github-policy-service agree |
|
ใช้ NEXORA stack บน Windows locale ไทย |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses #5566
Problem
Several
open()calls in the GAIA benchmark scripts omit an explicitencodingparameter. Python uses the system default locale encoding when none is specified, which is not UTF-8 on many Windows installations. This causesUnicodeDecodeErrorwhen reading files containing non-ASCII characters in non-English environments.Affected files:
benchmarks/GAIA/Scripts/custom_tabulate.pybenchmarks/GAIA/Scripts/init_tasks.pybenchmarks/GAIA/Templates/MagenticOne/scenario.pyFix
Add
encoding='utf-8'to allopen()calls in the above files. This is consistent with the fix in PR #7648 which addressed the same issue intask_centric_memoryutilities.