Skip to content

Commit

Permalink
Disable optimizer & inference in GAP_pkg_*.jl packages
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Jun 21, 2023
1 parent e670c09 commit c224692
Show file tree
Hide file tree
Showing 156 changed files with 936 additions and 0 deletions.
6 changes: 6 additions & 0 deletions GAP_pkg_4ti2interface/src/GAP_pkg_4ti2interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package 4ti2Interface 2022.09-01.
"""
module GAP_pkg_4ti2interface

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_ace/src/GAP_pkg_ace.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package ACE 5.6.1.
"""
module GAP_pkg_ace

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_aclib/src/GAP_pkg_aclib.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package AClib 1.3.2.
"""
module GAP_pkg_aclib

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_agt/src/GAP_pkg_agt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package AGT 0.3.
"""
module GAP_pkg_agt

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_alnuth/src/GAP_pkg_alnuth.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Alnuth 3.2.1.
"""
module GAP_pkg_alnuth

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_anupq/src/GAP_pkg_anupq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package ANUPQ 3.2.6.
"""
module GAP_pkg_anupq

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_atlasrep/src/GAP_pkg_atlasrep.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package AtlasRep 2.1.6.
"""
module GAP_pkg_atlasrep

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_autodoc/src/GAP_pkg_autodoc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package AutoDoc 2022.10.20.
"""
module GAP_pkg_autodoc

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_automata/src/GAP_pkg_automata.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Automata 1.15.
"""
module GAP_pkg_automata

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_automgrp/src/GAP_pkg_automgrp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package AutomGrp 1.3.2.
"""
module GAP_pkg_automgrp

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_autpgrp/src/GAP_pkg_autpgrp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package AutPGrp 1.11.
"""
module GAP_pkg_autpgrp

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_browse/src/GAP_pkg_browse.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Browse 1.8.19.
"""
module GAP_pkg_browse

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_cap/src/GAP_pkg_cap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CAP 2022.12-11.
"""
module GAP_pkg_cap

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_caratinterface/src/GAP_pkg_caratinterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CaratInterface 2.3.4.
"""
module GAP_pkg_caratinterface

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_cddinterface/src/GAP_pkg_cddinterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CddInterface 2022.11.01.
"""
module GAP_pkg_cddinterface

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_circle/src/GAP_pkg_circle.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Circle 1.6.5.
"""
module GAP_pkg_circle

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_classicpres/src/GAP_pkg_classicpres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package classicpres 1.22.
"""
module GAP_pkg_classicpres

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_cohomolo/src/GAP_pkg_cohomolo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package cohomolo 1.6.10.
"""
module GAP_pkg_cohomolo

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_congruence/src/GAP_pkg_congruence.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Congruence 1.2.4.
"""
module GAP_pkg_congruence

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_corelg/src/GAP_pkg_corelg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CoReLG 1.56.
"""
module GAP_pkg_corelg

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_crime/src/GAP_pkg_crime.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CRIME 1.6.
"""
module GAP_pkg_crime

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_crisp/src/GAP_pkg_crisp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CRISP 1.4.6.
"""
module GAP_pkg_crisp

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_crypting/src/GAP_pkg_crypting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package crypting 0.10.4.
"""
module GAP_pkg_crypting

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_cryst/src/GAP_pkg_cryst.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Cryst 4.1.25.
"""
module GAP_pkg_cryst

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_crystcat/src/GAP_pkg_crystcat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CrystCat 1.1.10.
"""
module GAP_pkg_crystcat

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_ctbllib/src/GAP_pkg_ctbllib.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package CTblLib 1.3.4.
"""
module GAP_pkg_ctbllib

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_cubefree/src/GAP_pkg_cubefree.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package Cubefree 1.19.
"""
module GAP_pkg_cubefree

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_curlinterface/src/GAP_pkg_curlinterface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package curlInterface 2.3.1.
"""
module GAP_pkg_curlinterface

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_cvec/src/GAP_pkg_cvec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package cvec 2.7.6.
"""
module GAP_pkg_cvec

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
6 changes: 6 additions & 0 deletions GAP_pkg_datastructures/src/GAP_pkg_datastructures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A wrapper for the GAP package datastructures 0.3.0.
"""
module GAP_pkg_datastructures

# disable optimizer and method inference if possible, they just cost
# us here without any benefit (copied from JLLWrappers.jl)
if isdefined(Base, :Experimental) && isdefined(Base.Experimental, Symbol("@compiler_options"))
@eval Base.Experimental.@compiler_options compile=min optimize=0 infer=false
end

using Pkg.Artifacts
using GAP

Expand Down
Loading

0 comments on commit c224692

Please sign in to comment.