Skip to content

Commit

Permalink
chore: set moduledoc false
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Mar 2, 2024
1 parent 79d9e4c commit 600cc60
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
6 changes: 3 additions & 3 deletions exla/lib/exla/mlir/function.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule EXLA.MLIR.Function do
@moduledoc """
Representation of an MLIR Function or `func.func` type.
"""
@moduledoc false
# Representation of an MLIR Function or `func.func` type.

defstruct [:module, :ref, :name, :return_shape]

alias __MODULE__, as: Function
Expand Down
5 changes: 2 additions & 3 deletions exla/lib/exla/mlir/module.ex
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
defmodule EXLA.MLIR.Module do
@moduledoc """
Representation of an MLIR module.
"""
@moduledoc false
# Representation of an MLIR module.

defstruct [:ref]

Expand Down
3 changes: 2 additions & 1 deletion exla/lib/exla/mlir/region.ex
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
defmodule EXLA.MLIR.Region do
@moduledoc "Holds the ref for an MLIR region."
@moduledoc false
# Holds the ref for an MLIR region.

defstruct [:ref]
end
11 changes: 5 additions & 6 deletions exla/lib/exla/mlir/value.ex
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
defmodule EXLA.MLIR.Value do
@moduledoc """
Representation of an MLIR Value.
@moduledoc false
# Representation of an MLIR Value.
# MLIR Values are SSA and generally are either operations or
# block arguments. This module is used to construct most of the
# MLIR operations.

MLIR Values are SSA and generally are either operations or
block arguments. This module is used to construct most of the
MLIR operations.
"""
defstruct [:ref, :function]

alias __MODULE__, as: Value
Expand Down

0 comments on commit 600cc60

Please sign in to comment.