-
Notifications
You must be signed in to change notification settings - Fork 449
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb13503
commit 7f94f4c
Showing
11 changed files
with
282 additions
and
9 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
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
Binary file not shown.
49 changes: 49 additions & 0 deletions
49
crates/burn-import/onnx-tests/tests/maxpool1d/maxpool1d.py
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,49 @@ | ||
#!/usr/bin/env python3 | ||
|
||
# used to generate model: maxpool2d1.onnx | ||
|
||
import torch | ||
import torch.nn as nn | ||
|
||
|
||
class Model(nn.Module): | ||
def __init__(self): | ||
super(Model, self).__init__() | ||
|
||
self.maxpool = nn.MaxPool1d(5, stride=2, padding=2, dilation=1) | ||
|
||
def forward(self, x): | ||
x = self.maxpool(x) | ||
return x | ||
|
||
|
||
def main(): | ||
# Set seed for reproducibility | ||
torch.manual_seed(42) | ||
|
||
# Print options | ||
torch.set_printoptions(precision=3) | ||
|
||
# Export to onnx | ||
model = Model() | ||
model.eval() | ||
device = torch.device("cpu") | ||
|
||
file_name = "maxpool1d.onnx" | ||
test_input = torch.randn(1, 5, 5, device=device) | ||
torch.onnx.export(model, test_input, file_name, | ||
verbose=False, opset_version=16) | ||
|
||
print("Finished exporting model to {}".format(file_name)) | ||
|
||
# Output some test data for use in the test | ||
print("Test input data shape of ones: {}".format(test_input.shape)) | ||
print("Test input data of ones: {}".format(test_input)) | ||
output = model.forward(test_input) | ||
print("Test output data shape: {}".format(output.shape)) | ||
print("Test output: {}".format(output)) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() | ||
|
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
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,158 @@ | ||
use proc_macro2::TokenStream; | ||
use quote::quote; | ||
|
||
use burn::{nn::pool::MaxPool1dConfig, record::PrecisionSettings}; | ||
|
||
use super::{Node, NodeCodegen}; | ||
use crate::burn::{BurnImports, OtherType, Scope, TensorType, ToTokens, Type}; | ||
|
||
#[derive(Debug, Clone)] | ||
pub struct MaxPool1dNode { | ||
pub field: OtherType, | ||
pub input: TensorType, | ||
pub output: TensorType, | ||
pub config: MaxPool1dConfig, | ||
} | ||
|
||
impl MaxPool1dNode { | ||
pub fn new<S: AsRef<str>>( | ||
name: S, | ||
input: TensorType, | ||
output: TensorType, | ||
config: MaxPool1dConfig, | ||
) -> Self { | ||
Self { | ||
field: OtherType::new( | ||
name, | ||
quote! { | ||
MaxPool1d | ||
}, | ||
), | ||
input, | ||
output, | ||
config, | ||
} | ||
} | ||
} | ||
|
||
impl<PS: PrecisionSettings> NodeCodegen<PS> for MaxPool1dNode { | ||
fn input_types(&self) -> Vec<Type> { | ||
vec![Type::Tensor(self.input.clone())] | ||
} | ||
fn output_types(&self) -> Vec<Type> { | ||
vec![Type::Tensor(self.output.clone())] | ||
} | ||
fn field_type(&self) -> Option<Type> { | ||
Some(Type::Other(self.field.clone())) | ||
} | ||
|
||
fn field_init(&self) -> Option<TokenStream> { | ||
let name = &self.field.name; | ||
let kernel_size = self.config.kernel_size.to_tokens(); | ||
let strides = self.config.stride.to_tokens(); | ||
let padding = self.config.padding.to_tokens(); | ||
let dilation = self.config.dilation.to_tokens(); | ||
let tokens = quote! { | ||
let #name = MaxPool1dConfig::new(#kernel_size) | ||
.with_stride(#strides) | ||
.with_padding(#padding) | ||
.with_dilation(#dilation) | ||
.init(); | ||
}; | ||
|
||
Some(tokens) | ||
} | ||
|
||
fn forward(&self, scope: &mut Scope, node_position: usize) -> TokenStream { | ||
let input = scope.tensor_use_owned(&self.input, node_position); | ||
let output = &self.output.name; | ||
let field = &self.field.name; | ||
|
||
quote! { | ||
let #output = self.#field.forward(#input); | ||
} | ||
} | ||
|
||
fn register_imports(&self, imports: &mut BurnImports) { | ||
imports.register("burn::nn::PaddingConfig1d"); | ||
imports.register("burn::nn::pool::MaxPool1d"); | ||
imports.register("burn::nn::pool::MaxPool1dConfig"); | ||
} | ||
|
||
fn into_node(self) -> Node<PS> { | ||
Node::MaxPool1d(self) | ||
} | ||
|
||
fn field_serialize<S: serde::Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> { | ||
S::serialize_none(serializer) | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use crate::burn::{graph::BurnGraph, node::test::assert_tokens, TensorType}; | ||
use burn::{ | ||
nn::{pool::MaxPool1dConfig, PaddingConfig1d}, | ||
record::FullPrecisionSettings, | ||
}; | ||
|
||
#[test] | ||
fn test_codegen() { | ||
let mut graph = BurnGraph::<FullPrecisionSettings>::default(); | ||
|
||
graph.register(MaxPool1dNode::new( | ||
"max_pool1d", | ||
TensorType::new_float("input", 3), | ||
TensorType::new_float("output", 3), | ||
MaxPool1dConfig::new(3) | ||
.with_stride(1) | ||
.with_padding(PaddingConfig1d::Valid) | ||
.with_dilation(1), | ||
)); | ||
|
||
graph.register_input_output(vec!["input".to_string()], vec!["output".to_string()]); | ||
|
||
let expected = quote! { | ||
use burn::{ | ||
module::Module, | ||
tensor::{backend::Backend, Tensor}, | ||
}; | ||
use burn::nn::PaddingConfig1d; | ||
use burn::nn::pool::MaxPool1d; | ||
use burn::nn::pool::MaxPool1dConfig; | ||
|
||
#[derive(Module, Debug)] | ||
pub struct Model <B: Backend> { | ||
max_pool1d: MaxPool1d, | ||
phantom: core::marker::PhantomData<B>, | ||
device: burn::module::Ignored<B::Device>, | ||
} | ||
|
||
impl<B: Backend> Model <B> { | ||
#[allow(unused_variables)] | ||
pub fn new(device: &B::Device) -> Self { | ||
let max_pool1d = MaxPool1dConfig::new(3) | ||
.with_stride(1) | ||
.with_padding(PaddingConfig1d::Valid) | ||
.with_dilation(1) | ||
.init(); | ||
|
||
Self { | ||
max_pool1d, | ||
phantom: core::marker::PhantomData, | ||
device: burn::module::Ignored(device.clone()), | ||
} | ||
} | ||
#[allow(clippy::let_and_return, clippy::approx_constant)] | ||
pub fn forward(&self, input: Tensor<B, 3>) -> Tensor<B, 3> { | ||
let output = self.max_pool1d.forward(input); | ||
|
||
output | ||
} | ||
} | ||
}; | ||
|
||
assert_tokens(graph.codegen(), expected); | ||
} | ||
} |
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
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