Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20975 from JuliaLang/tb/align_asgn
Use proper alignment when copying data to a variable.
- Loading branch information
1820efa
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Executing the daily benchmark build, I will reply here when finished:
@nanosoldier
runbenchmarks(ALL, isdaily = true)
1820efa
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something went wrong when running your job:
Logs and partial data can be found here
cc @jrevels
1820efa
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This failure is the same I'm seeing over #21028
1820efa
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's the stacktrace in the logs, which points to here. From the error message, it seems like
V
isn't getting "bound" to the correct type at runtime, and instead is considered aTypeVar
when it's used in the method body. For example, here's how to recreate that error message:AFIAK,
V
in JLD's case should be bound to a value of typeType
, notTypeVar
. Is this a bug in type inference?