Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unfuse activation in facenet_nchw.js #248

Merged
merged 1 commit into from
Jun 11, 2024
Merged
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
7 changes: 3 additions & 4 deletions face_recognition/facenet_nchw.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ export class FaceNetNchw {
bias: bias,
};
}
if (relu) {
options.activation = this.builder_.relu();
}

// WebNN spec drops autoPad support, compute the explicit padding instead.
if (options.autoPad == 'same-upper') {
options.padding =
Expand All @@ -52,7 +50,8 @@ export class FaceNetNchw {
/* oihw */[weights.shape()[2], weights.shape()[3]],
options.strides, options.dilations, options.autoPad);
}
return this.builder_.conv2d(input, weights, options);
const conv2d = this.builder_.conv2d(input, weights, options);
return relu ? this.builder_.relu(conv2d) : conv2d;
}

async buildBlock35_(input, indice, weightsSuffixes) {
Expand Down