You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
oj-bundle command no longer works for me with files that contain #pragma GCC target("avx2,tune=native"), as it triggers assert len(lines) == len(uncommented_lines).
When trying to see the difference between them, it seems that lines look as follows:
#pragma GCC target("avx2,tune=native")
While uncommented_lines, for some reason, unwrap to
I assume it might be related to a GCC update, as it was running fine previously:
$ g++ --versiong++ (GCC) 14.1.1 20240507Copyright (C) 2024 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Steps to reproduce / 再現方法
Create a file consisting of a single line #pragma GCC target("avx2,tune=native").
Summary / 概要
oj-bundle
command no longer works for me with files that contain#pragma GCC target("avx2,tune=native")
, as it triggersassert len(lines) == len(uncommented_lines)
.When trying to see the difference between them, it seems that
lines
look as follows:#pragma GCC target("avx2,tune=native")
While
uncommented_lines
, for some reason, unwrap toI assume it might be related to a GCC update, as it was running fine previously:
Steps to reproduce / 再現方法
#pragma GCC target("avx2,tune=native")
.oj-bundle
on it.environments:
$ oj --version
)online-judge-tools 11.5.1 (+ online-judge-api-client 10.10.1)
Expected behavior / 期待される挙動
Actual behavior / 実際の挙動
Other notes / その他
The text was updated successfully, but these errors were encountered: