-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* raw impl * fix bug * refine Co-authored-by: BBuf <[email protected]>
- Loading branch information
1 parent
e8390ac
commit 1b5a545
Showing
3 changed files
with
152 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
""" | ||
Copyright 2020 The OneFlow Authors. All rights reserved. | ||
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 tempfile | ||
import oneflow as flow | ||
from oneflow_onnx.oneflow2onnx.util import convert_to_onnx_and_check | ||
|
||
class Var(flow.nn.Module): | ||
def __init__(self) -> None: | ||
super(Var, self).__init__() | ||
|
||
def forward(self, x: flow.Tensor) -> flow.Tensor: | ||
y = flow.var(x, dim=None, unbiased=True, keepdim=True) | ||
return y | ||
|
||
var_module = Var() | ||
class VarOpGraph(flow.nn.Graph): | ||
def __init__(self): | ||
super().__init__() | ||
self.m = var_module | ||
|
||
def build(self, x): | ||
out = self.m(x) | ||
return out | ||
|
||
def test_var(): | ||
|
||
var_op_graph = VarOpGraph() | ||
var_op_graph._compile(flow.arange(48, dtype=flow.float32).reshape(2, 2, 3, 4)) | ||
convert_to_onnx_and_check(var_op_graph, onnx_model_path="/tmp", opset=13) | ||
|
||
test_var() | ||
|
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,46 @@ | ||
""" | ||
Copyright 2020 The OneFlow Authors. All rights reserved. | ||
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 tempfile | ||
import oneflow as flow | ||
from oneflow_onnx.oneflow2onnx.util import convert_to_onnx_and_check | ||
|
||
class Var(flow.nn.Module): | ||
def __init__(self) -> None: | ||
super(Var, self).__init__() | ||
|
||
def forward(self, x: flow.Tensor) -> flow.Tensor: | ||
y = flow.var(x, dim=None, unbiased=True, keepdim=True) | ||
return y | ||
|
||
var_module = Var() | ||
var_module = var_module.to("cuda") | ||
class VarOpGraph(flow.nn.Graph): | ||
def __init__(self): | ||
super().__init__() | ||
self.m = var_module | ||
|
||
def build(self, x): | ||
out = self.m(x) | ||
return out | ||
|
||
def test_var(): | ||
|
||
var_op_graph = VarOpGraph() | ||
var_op_graph._compile(flow.arange(48, dtype=flow.float32).reshape(2, 2, 3, 4).to("cuda")) | ||
convert_to_onnx_and_check(var_op_graph, onnx_model_path="/tmp", opset=13, device="gpu") | ||
|
||
test_var() | ||
|
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