-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is some utility functions related to broadcasting.
- Loading branch information
Showing
2 changed files
with
104 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
/- | ||
Copyright (c) 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
Released under Apache 2.0 license as described in the file LICENSE. | ||
Authors: Jean-Baptiste Tristan, Paul Govereau, Sean McLaughlin | ||
-/ | ||
|
||
import Batteries.Data.List | ||
import TensorLib.Common | ||
|
||
/-! | ||
Broadcasting is a convenience and performance trick to allow operations that expect the same | ||
shaped arguments to work on non-matching arguments. For example, we would like to be able | ||
to add 1 to each element of a tensor without building the all-1s tensor in memory. | ||
It involves applying the following rules to two tensors | ||
1. If the shape of one is smaller than the other, pad the smaller one | ||
with 1s until they are the same length | ||
2. For each pair of numbers at each index, to broadcast either the | ||
numbers must be the same, or one of them should be 1. In the later | ||
case we replace that shape with the other number | ||
For example, we broadcast (3, 2, 1) (2, 7) to (3, 2, 7). | ||
A: (3, 2, 1) | ||
B: (2, 7) | ||
Rule 1 | ||
A: (3, 2, 1) | ||
B: (1, 2, 7) | ||
Rule 2 | ||
A: (3, 2, 1) | ||
B: (3, 2, 7) | ||
Rule 2 | ||
A: (3, 2, 7) | ||
B: (3, 2, 7) | ||
-/ | ||
|
||
namespace TensorLib | ||
|
||
structure Broadcast where | ||
left : Shape | ||
right : Shape | ||
deriving BEq, Repr | ||
|
||
namespace Broadcast | ||
|
||
-- In broadcasting, we first extend the shorter array by prefixing 1s. | ||
-- NKI semantics currently suffixes 1s in some cases, so be explicit about | ||
-- the naming. | ||
private def oneExtendPrefix (b : Broadcast) : Broadcast := | ||
let n1 := b.left.length | ||
let n2 := b.right.length | ||
if n1 <= n2 | ||
then { b with left := List.replicate (n2 - n1) 1 ++ b.left } | ||
else { b with right := List.replicate (n1 - n2) 1 ++ b.right } | ||
|
||
private theorem oneExtendPrefixLength (b : Broadcast) : | ||
let b' := oneExtendPrefix b | ||
b'.left.length = b'.right.length := by | ||
cases b | ||
rename_i left right | ||
simp [oneExtendPrefix] | ||
by_cases H : left.length <= right.length | ||
. simp [H] | ||
. simp [H] | ||
rw [Nat.sub_add_cancel] | ||
omega | ||
|
||
private def matchPairs (b : Broadcast) : Option Shape := | ||
if b.left.length != b.right.length then none else | ||
let f xy := match xy with | ||
| (x, y) => | ||
if x == y then some x | ||
else if x == 1 then some y | ||
else if y == 1 then some x | ||
else none | ||
(b.left.zip b.right).traverse f | ||
|
||
--! Returns the shape resulting from broadcast the arguments | ||
def broadcast (b : Broadcast) : Option Shape := matchPairs (oneExtendPrefix b) | ||
|
||
--! Whether broadcasting is possible | ||
def canBroadcast (b : Broadcast) : Bool := (broadcast b).isSome | ||
|
||
#guard matchPairs (Broadcast.mk [1, 2, 3] [7, 2, 1]) == some [7, 2, 3] | ||
#guard broadcast (Broadcast.mk [1, 2, 3] [7, 7, 9, 2, 1]) == some [7, 7, 9, 2, 3] | ||
|
||
-- todo: add plausible properties when property-based testing settles down in Lean-land | ||
#guard | ||
let x1 := [1,2,3] | ||
let x2 := [2,3] | ||
let b1 := Broadcast.mk x1 x1 | ||
let b2 := Broadcast.mk x1 x2 | ||
oneExtendPrefix b1 == b1 && | ||
broadcast b2 == broadcast b1 && | ||
broadcast b2 == some [1, 2, 3] | ||
|
||
end Broadcast |