-
-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking release 0.22 #4477
base: master
Are you sure you want to change the base?
Breaking release 0.22 #4477
Conversation
Compile Times benchmarkNote, that these numbers may fluctuate on the CI servers, so take them with a grain of salt. All benchmark results are based on the mean time and negative percent mean faster than the base branch. Note, that GLMakie + WGLMakie run on an emulated GPU, so the runtime benchmark is much slower. Results are from running: using_time = @ctime using Backend
# Compile time
create_time = @ctime fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true)
display_time = @ctime Makie.colorbuffer(display(fig))
# Runtime
create_time = @benchmark fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true)
display_time = @benchmark Makie.colorbuffer(fig)
|
* get Makie to compile * get GLMakie to compile * fix nromal rename, meshscatter * fix pointtype in mesh conversion * avoid matrix in vector rotation * fix more tests * update GeometryBasics functions/interface * fix voronoiplot clipping * update CairoMakie * update RPRMakie * prepare WGLMakie * Update CI to use the GeometryBasics refactor branch (#4326) * Update ci.yml * Update Docs.yml * Update reference_tests.yml * add MeshIO branch --------- Co-authored-by: ffreyer <[email protected]> * update _faces * normals -> normal * add ShaderAbstractions to ci * update docs, normals deprecation * fix branch names * fix catmesh getting normals regenerated * update for ShaderAbstractions * handle voxel clipping in CairoMakie like in GLMakie * fix another two "normals" * add dev branches for RPRMakie CI * fix missing kwarg name in conversion * update for FaceViews * add example for per-face colors and normals * improve typing * fix Sampler, allow mipmap via Sampler * try to fix benchmarks * add to correct env * remove from master project * fix docs * fix Rect decomposition * fix poly converts * fix typo * improve precompilation by avoiding constprop and more direct icon loading via PNGFiles * fix CairoMakie precompile * fix old syntax * fix ambient light * add temp dependencies to relocatbility test * bump RPR to required version * update changelog * fix test * fix other branch in ray cast test * fix relocatability ci * fix rpr and relocatability --------- Co-authored-by: Anshul Singhvi <[email protected]> Co-authored-by: SimonDanisch <[email protected]>
…into breaking-0.22
Benchmark ResultsSHA: f8e55192677fca9661c82932252f55417f1c4a5d Warning These results are subject to substantial noise because GitHub's CI runs on shared machines that are not ideally suited for benchmarking. |
Wait isn't that a regression, that was only recently reported? |
Idk if it has been reported. I just updated the refimg here because it has nothing to do with the breaking release |
* Chane color generation * Changelog --------- Co-authored-by: Simon <[email protected]> Co-authored-by: Frederic Freyer <[email protected]>
Reverted the refimg update after merging #4591 The display times show opposite behavior for me locally. With using GLMakie
macro ctime(x)
return quote
tstart = time_ns()
$(esc(x))
Float64(time_ns() - tstart)
end
end
fig = scatter(1:4; color=1:4, colormap=:turbo, markersize=20, visible=true);
GC.gc()
@ctime display(fig) I get ~630ms on master and ~380ms on this branch. Number of stale instances also went down |
I can confirm this! Really weird, considering that I should be using the same Julia version and this regression popping up quite reproducible on the CI. |
…into breaking-0.22
…into breaking-0.22
* split marker_offset from quad_offset * add test * fix typo * add 3D tests * fix FastPixel scaling with marker_offset in data space * improve test, remove old * fix CairoMakie image scatter offset * tweak test some more * test marker_offset with 2D and 3D rotations * fix 2D rotation + marker_offset + Rect in CairoMakie * exclude 3D test in CairoMakie * fix test error * 1.6 compat * update changelog * add attribute example * remove TODO
Description
PR for the next breaking release
Merge TODO:
Makie.mesh
compatible with MultiMesh (GeometryBasics refactor) #4368)maybe Improve and use(waiting on plot update refactor)shared_attributes
for attribute passthrough #4399transform_marker
attribute to meshscatter #4606To fix:
surface(210..180, 80..110, rand(2, 2))
in WGLMakie (picking test)Closes CompatHelper prs:
closes #4622, closes #4620, closes #4616, closes #4610, closes #4605, closes #4600
Actual Issues:
voronoiplot
default colours depend too much on the generator order #4344marker_offset
is broken #4383