Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/ExaModelsMOI.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ end
"""
update_bin!(bin::Vector{Bin}, head, data)

This function loops thorugh the list of `bin` looking for a matching `head`. If
This function loops through the list of `bin` looking for a matching `head`. If
found, it updates the bin in place. Othersise, it appends a new bin.
"""
function update_bin!(
Expand Down
4 changes: 2 additions & 2 deletions src/gradient.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ end
"""
gradient!(y, f, x, adj)

Performs dense gradient evalution
Performs dense gradient evaluation

# Arguments:
- `y`: result vector
Expand Down Expand Up @@ -159,7 +159,7 @@ end

""" sgradient!(y, f, x, adj)

Performs sparse gradient evalution
Performs sparse gradient evaluation

# Arguments:
- `y`: result vector
Expand Down
2 changes: 1 addition & 1 deletion src/hessian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ end
"""
shessian!(y1, y2, f, x, adj1, adj2)

Performs sparse jacobian evalution
Performs sparse jacobian evaluation

# Arguments:
- `y1`: result vector #1
Expand Down
2 changes: 1 addition & 1 deletion src/jacobian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ end
"""
sjacobian!(y1, y2, f, x, adj)

Performs sparse jacobian evalution
Performs sparse jacobian evaluation

# Arguments:
- `y1`: result vector #1
Expand Down
4 changes: 2 additions & 2 deletions src/simdfunction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Returns a `SIMDFunction` using the `gen`.
# Arguments:
- `gen`: an iterable function specified in `Base.Generator` format
- `o0`: offset for the function evaluation
- `o1`: offset for the derivative evalution
- `o2`: offset for the second-order derivative evalution
- `o1`: offset for the derivative evaluation
- `o2`: offset for the second-order derivative evaluation
"""
@inline function SIMDFunction(T, gen::Base.Generator, o0 = 0, o1 = 0, o2 = 0)
_simdfunction(T, gen.f(DataSource()), o0, o1, o2)
Expand Down
Loading