Skip to content

Commit

Permalink
Test doc 5
Browse files Browse the repository at this point in the history
  • Loading branch information
Dvegrod committed Sep 3, 2024
1 parent 67c18da commit e95aded
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 199 deletions.
12 changes: 0 additions & 12 deletions docs/src/api.MD
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,6 @@ julia>?
help?> PerfTest
```

## [`metrics`](@ref) type and basic constructors
```@docs
metrics
```


## [`regression`](@ref), [`suppress_output`](@ref), [`save_folder`](@ref)
```@docs
regression
suppress_output
save_folder
```


## Types
Expand Down
1 change: 0 additions & 1 deletion src/PerfTest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ include("metrics.jl")
include("methodologies/regression.jl")
include("methodologies/effective_memory_throughput.jl")
include("methodologies/roofline.jl")
#include("methodologies/fullroofline.jl")

include("prefix.jl")
include("suffix.jl")
Expand Down
3 changes: 0 additions & 3 deletions src/config.jl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ verbose = false

max_saved_results = 10

""" MPI, CUDA, ROC options """
# Will be set to true if the MPI is detected, but it can be triggered manually if needed
mpi_enabled = false

Expand All @@ -98,10 +97,8 @@ mpi_enabled = false
mpi_test_mode = :single


""" Tested expressions output handling """
suppress_output = true

""" Regression testing configuration """
regression = Struct_Regression(
enabled = true,

Expand Down
179 changes: 0 additions & 179 deletions src/methodologies/fullroofline.jl

This file was deleted.

1 change: 0 additions & 1 deletion src/perftest/data_handling.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ function by_index(dict::Union{Dict,BenchmarkGroup}, idx::Vector{DepthRecord})
return eval(e)
end


"""
This method will return a flattened array of all of the results for all the methodologies exercised in the provided dictionary.
Expand Down
5 changes: 2 additions & 3 deletions src/perftest/structs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,8 @@ This struct is used in the test suite to save a metric test result and its assoc
full_print::Bool
end

"""
A custom methodology element is used to save informational metrics, other special values and custom functions to be executed after testing.
"""

# A custom methodology element is used to save informational metrics, other special values and custom functions to be executed after testing.
Custom_Methodology_Elements = Union{Metric_Result,Float64,Function}


Expand Down

0 comments on commit e95aded

Please sign in to comment.