-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[wasm] Add BroadcastArgs kernel (#7290)
* Add DenseBincount kernel * Remove redundant checks * Reduce buf reset calls * Update to C++17 * Add BroadcastArgs kernel * Fix lint * Update tfjs-backend-wasm/src/backend_wasm.ts Co-authored-by: Matthew Soulanille <[email protected]> Co-authored-by: Ping Yu <[email protected]> Co-authored-by: Matthew Soulanille <[email protected]>
- Loading branch information
1 parent
8704ae4
commit ceb69e6
Showing
4 changed files
with
84 additions
and
34 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,43 @@ | ||
/** | ||
* @license | ||
* Copyright 2023 Google LLC. | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* ============================================================================= | ||
*/ | ||
import {backend_util, BroadcastArgs, BroadcastArgsInputs, KernelConfig, TensorInfo} from '@tensorflow/tfjs-core'; | ||
|
||
import {BackendWasm} from '../backend_wasm'; | ||
|
||
export function broadcastArgs(args: { | ||
inputs: BroadcastArgsInputs, | ||
backend: BackendWasm, | ||
}): TensorInfo { | ||
const {inputs, backend} = args; | ||
const {s0, s1} = inputs; | ||
|
||
const s0Vals = backend.typedArrayFromHeap(s0); | ||
const s1Vals = backend.typedArrayFromHeap(s1); | ||
|
||
const broadcastShape = backend_util.assertAndGetBroadcastShape( | ||
Array.from(s0Vals), Array.from(s1Vals)); | ||
|
||
return backend.makeOutput( | ||
[broadcastShape.length], 'int32', /*memoryOffset=*/undefined, | ||
/*values=*/new Int32Array(broadcastShape)); | ||
} | ||
|
||
export const broadcastArgsConfig: KernelConfig = { | ||
kernelName: BroadcastArgs, | ||
backendName: 'wasm', | ||
kernelFunc: broadcastArgs | ||
}; |
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