Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
6e405b81
Unverified
Commit
6e405b81
authored
Nov 07, 2019
by
Scott Cyphers
Committed by
GitHub
Nov 07, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Atan2 op (#3859)
* Atan2 op
parent
1d9a4951
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
301 additions
and
0 deletions
+301
-0
CMakeLists.txt
src/ngraph/CMakeLists.txt
+2
-0
ngraph.hpp
src/ngraph/ngraph.hpp
+1
-0
atan2.cpp
src/ngraph/op/atan2.cpp
+43
-0
atan2.hpp
src/ngraph/op/atan2.hpp
+50
-0
op_tbl.hpp
src/ngraph/op/op_tbl.hpp
+1
-0
cse.cpp
src/ngraph/pass/cse.cpp
+2
-0
cpu_builder.cpp
src/ngraph/runtime/cpu/cpu_builder.cpp
+9
-0
cpu_emitter.cpp
src/ngraph/runtime/cpu/cpu_emitter.cpp
+16
-0
cpu_external_function.cpp
src/ngraph/runtime/cpu/cpu_external_function.cpp
+2
-0
atan2.hpp
src/ngraph/runtime/cpu/kernel/atan2.hpp
+56
-0
gcpu_executable.hpp
src/ngraph/runtime/generic_cpu/gcpu_executable.hpp
+10
-0
intelgpu_backend.cpp
src/ngraph/runtime/intelgpu/intelgpu_backend.cpp
+1
-0
int_executable.hpp
src/ngraph/runtime/interpreter/int_executable.hpp
+10
-0
unit_test.manifest
src/ngraph/runtime/plaidml/unit_test.manifest
+1
-0
atan2.hpp
src/ngraph/runtime/reference/atan2.hpp
+38
-0
serializer.cpp
src/ngraph/serializer.cpp
+16
-0
binary_elementwise.in.cpp
test/backend/binary_elementwise.in.cpp
+38
-0
copy.cpp
test/copy.cpp
+5
-0
No files found.
src/ngraph/CMakeLists.txt
View file @
6e405b81
...
...
@@ -106,6 +106,8 @@ set (SRC
op/asin.hpp
op/atan.cpp
op/atan.hpp
op/atan2.cpp
op/atan2.hpp
op/avg_pool.cpp
op/avg_pool.hpp
op/batch_norm.cpp
...
...
src/ngraph/ngraph.hpp
View file @
6e405b81
...
...
@@ -69,6 +69,7 @@
#include "ngraph/op/argmin.hpp"
#include "ngraph/op/asin.hpp"
#include "ngraph/op/atan.hpp"
#include "ngraph/op/atan2.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "ngraph/op/batch_norm.hpp"
#include "ngraph/op/broadcast.hpp"
...
...
src/ngraph/op/atan2.cpp
0 → 100644
View file @
6e405b81
//*****************************************************************************
// Copyright 2017-2019 Intel Corporation
//
// 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.
//*****************************************************************************
#include "ngraph/op/atan2.hpp"
using
namespace
std
;
using
namespace
ngraph
;
const
string
op
::
Atan2
::
type_name
{
"Atan2"
};
op
::
Atan2
::
Atan2
(
const
Output
<
Node
>&
y
,
const
Output
<
Node
>&
x
,
const
AutoBroadcastSpec
&
autob
)
:
BinaryElementwiseArithmetic
(
y
,
x
,
autob
)
{
constructor_validate_and_infer_types
();
}
shared_ptr
<
Node
>
op
::
Atan2
::
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
{
check_new_args_count
(
this
,
new_args
);
return
make_shared
<
Atan2
>
(
new_args
.
at
(
0
),
new_args
.
at
(
1
),
this
->
get_autob
());
}
void
op
::
Atan2
::
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
{
if
(
get_autob
().
m_type
!=
op
::
AutoBroadcastType
::
NONE
)
{
throw
ngraph_error
(
"Autodiff not supported with auto broadcasting"
);
}
throw
ngraph_error
(
"Autodiff not supported for Atan2"
);
}
src/ngraph/op/atan2.hpp
0 → 100644
View file @
6e405b81
//*****************************************************************************
// Copyright 2017-2019 Intel Corporation
//
// 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.
//*****************************************************************************
#pragma once
#include <memory>
#include "ngraph/op/util/binary_elementwise_arithmetic.hpp"
namespace
ngraph
{
namespace
op
{
/// \brief Elementwise full arctan operation
class
Atan2
:
public
util
::
BinaryElementwiseArithmetic
{
public
:
NGRAPH_API
static
const
std
::
string
type_name
;
const
std
::
string
&
description
()
const
override
{
return
type_name
;
}
Atan2
()
=
default
;
/// \brief atan2(y,x) is the angle from the origin to the point (x,y) (note reversed order).
///
/// \param y
/// \param x
Atan2
(
const
Output
<
Node
>&
y
,
const
Output
<
Node
>&
x
,
const
AutoBroadcastSpec
&
autob
=
AutoBroadcastSpec
());
std
::
shared_ptr
<
Node
>
copy_with_new_args
(
const
NodeVector
&
new_args
)
const
override
;
protected
:
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
override
;
};
}
}
src/ngraph/op/op_tbl.hpp
View file @
6e405b81
...
...
@@ -61,6 +61,7 @@ NGRAPH_OP(ArgMax, ngraph::op)
NGRAPH_OP
(
ArgMin
,
ngraph
::
op
)
NGRAPH_OP
(
Asin
,
ngraph
::
op
)
NGRAPH_OP
(
Atan
,
ngraph
::
op
)
NGRAPH_OP
(
Atan2
,
ngraph
::
op
)
NGRAPH_OP
(
AvgPool
,
ngraph
::
op
)
NGRAPH_OP
(
AvgPoolBackprop
,
ngraph
::
op
)
NGRAPH_OP
(
BatchMatMul
,
ngraph
::
op
)
...
...
src/ngraph/pass/cse.cpp
View file @
6e405b81
...
...
@@ -29,6 +29,7 @@
#include "ngraph/op/add.hpp"
#include "ngraph/op/asin.hpp"
#include "ngraph/op/atan.hpp"
#include "ngraph/op/atan2.hpp"
#include "ngraph/op/broadcast.hpp"
#include "ngraph/op/ceiling.hpp"
#include "ngraph/op/constant.hpp"
...
...
@@ -151,6 +152,7 @@ static unordered_map<type_index, function<bool(shared_ptr<Node>, shared_ptr<Node
{
TI
(
op
::
Acos
),
cse_unarywise
},
{
TI
(
op
::
Asin
),
cse_unarywise
},
{
TI
(
op
::
Atan
),
cse_unarywise
},
{
TI
(
op
::
Atan2
),
cse_binarywise
},
{
TI
(
op
::
Ceiling
),
cse_unarywise
},
{
TI
(
op
::
Constant
),
cse_constant
},
{
TI
(
op
::
Cos
),
cse_unarywise
},
...
...
src/ngraph/runtime/cpu/cpu_builder.cpp
View file @
6e405b81
...
...
@@ -31,6 +31,7 @@
#include "ngraph/op/and.hpp"
#include "ngraph/op/asin.hpp"
#include "ngraph/op/atan.hpp"
#include "ngraph/op/atan2.hpp"
#include "ngraph/op/ceiling.hpp"
#include "ngraph/op/constant.hpp"
#include "ngraph/op/cos.hpp"
...
...
@@ -75,6 +76,7 @@
#include "ngraph/runtime/cpu/kernel/and.hpp"
#include "ngraph/runtime/cpu/kernel/asin.hpp"
#include "ngraph/runtime/cpu/kernel/atan.hpp"
#include "ngraph/runtime/cpu/kernel/atan2.hpp"
#include "ngraph/runtime/cpu/kernel/broadcast.hpp"
#include "ngraph/runtime/cpu/kernel/ceil.hpp"
#include "ngraph/runtime/cpu/kernel/cos.hpp"
...
...
@@ -311,6 +313,12 @@ namespace ngraph
BUILD_UNARY_ELEMWISE_FUNCTOR
(
runtime
::
cpu
::
kernel
::
atan
);
}
template
<>
void
Builder
::
BUILDER_DECL
(
ngraph
::
op
::
Atan2
)
{
BUILD_BINARY_ELEMWISE_FUNCTOR
(
runtime
::
cpu
::
kernel
::
atan2
);
}
template
<>
void
Builder
::
BUILDER_DECL
(
ngraph
::
op
::
Ceiling
)
{
...
...
@@ -628,6 +636,7 @@ namespace ngraph
REGISTER_OP_BUILDER
(
Acos
);
REGISTER_OP_BUILDER
(
Asin
);
REGISTER_OP_BUILDER
(
Atan
);
REGISTER_OP_BUILDER
(
Atan2
);
REGISTER_OP_BUILDER
(
Ceiling
);
REGISTER_OP_BUILDER
(
Cos
);
REGISTER_OP_BUILDER
(
Cosh
)
...
...
src/ngraph/runtime/cpu/cpu_emitter.cpp
View file @
6e405b81
...
...
@@ -34,6 +34,7 @@
#include "ngraph/op/argmin.hpp"
#include "ngraph/op/asin.hpp"
#include "ngraph/op/atan.hpp"
#include "ngraph/op/atan2.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "ngraph/op/batch_norm.hpp"
#include "ngraph/op/broadcast.hpp"
...
...
@@ -1829,6 +1830,21 @@ namespace ngraph
writer
.
block_end
();
}
template
<>
void
CPU_Emitter
::
EMITTER_DECL
(
ngraph
::
op
::
Atan2
)
{
(
void
)
external_function
;
(
void
)
node
;
writer
.
block_begin
();
writer
<<
"#pragma omp parallel for
\n
"
;
writer
<<
"for (size_t i = 0; i < "
<<
out
[
0
].
get_size
()
<<
"; i++)
\n
"
;
writer
.
block_begin
();
writer
<<
out
[
0
].
get_name
()
<<
"[i] = atan2("
<<
args
[
0
].
get_name
()
<<
", "
<<
args
[
1
].
get_name
()
<<
"[i]);
\n
"
;
writer
.
block_end
();
writer
.
block_end
();
}
static
void
emitArgMinArgMax
(
const
std
::
vector
<
TensorViewWrapper
>&
args
,
const
std
::
vector
<
TensorViewWrapper
>&
out
,
size_t
reduction_axis
,
...
...
src/ngraph/runtime/cpu/cpu_external_function.cpp
View file @
6e405b81
...
...
@@ -56,6 +56,7 @@
#include "ngraph/op/argmin.hpp"
#include "ngraph/op/asin.hpp"
#include "ngraph/op/atan.hpp"
#include "ngraph/op/atan2.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "ngraph/op/batch_norm.hpp"
#include "ngraph/op/broadcast.hpp"
...
...
@@ -365,6 +366,7 @@ static const runtime::cpu::OpMap dispatcher{
{
TI
(
ngraph
::
op
::
ArgMax
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
ArgMax
>
},
{
TI
(
ngraph
::
op
::
Acos
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
Acos
>
},
{
TI
(
ngraph
::
op
::
Atan
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
Atan
>
},
{
TI
(
ngraph
::
op
::
Atan2
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
Atan2
>
},
{
TI
(
ngraph
::
op
::
ReplaceSlice
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
ReplaceSlice
>
},
{
TI
(
ngraph
::
op
::
UpdateSlice
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
UpdateSlice
>
},
{
TI
(
ngraph
::
op
::
OneHot
),
&
runtime
::
cpu
::
CPU_Emitter
::
emit
<
op
::
OneHot
>
},
...
...
src/ngraph/runtime/cpu/kernel/atan2.hpp
0 → 100644
View file @
6e405b81
//*****************************************************************************
// Copyright 2017-2019 Intel Corporation
//
// 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.
//*****************************************************************************
#pragma once
#include <cmath>
#define EIGEN_USE_THREADS
#include <unsupported/Eigen/CXX11/Tensor>
#include "ngraph/runtime/cpu/cpu_executor.hpp"
namespace
ngraph
{
namespace
runtime
{
namespace
cpu
{
namespace
kernel
{
template
<
typename
ElementType
>
void
atan2
(
void
*
input0
,
void
*
input1
,
void
*
output
,
size_t
count
,
int
arena
)
{
Eigen
::
array
<
Eigen
::
Index
,
1
>
out_dims
,
in_dims
;
out_dims
[
0
]
=
in_dims
[
0
]
=
count
;
Eigen
::
TensorMap
<
Eigen
::
Tensor
<
ElementType
,
1
,
Eigen
::
RowMajor
>>
out
(
static_cast
<
ElementType
*>
(
output
),
out_dims
);
Eigen
::
TensorMap
<
Eigen
::
Tensor
<
ElementType
,
1
,
Eigen
::
RowMajor
>>
in0
(
static_cast
<
ElementType
*>
(
input0
),
in_dims
);
Eigen
::
TensorMap
<
Eigen
::
Tensor
<
ElementType
,
1
,
Eigen
::
RowMajor
>>
in1
(
static_cast
<
ElementType
*>
(
input1
),
in_dims
);
out
.
device
(
ngraph
::
runtime
::
cpu
::
executor
::
GetCPUExecutor
().
get_device
(
arena
))
=
in0
.
binaryExpr
(
in1
,
[](
ElementType
y
,
ElementType
x
)
{
return
static_cast
<
ElementType
>
(
std
::
atan2
(
y
,
x
));
});
}
}
}
}
}
src/ngraph/runtime/generic_cpu/gcpu_executable.hpp
View file @
6e405b81
...
...
@@ -87,6 +87,7 @@
#include "ngraph/runtime/reference/argmin.hpp"
#include "ngraph/runtime/reference/asin.hpp"
#include "ngraph/runtime/reference/atan.hpp"
#include "ngraph/runtime/reference/atan2.hpp"
#include "ngraph/runtime/reference/avg_pool.hpp"
#include "ngraph/runtime/reference/batch_mat_mul.hpp"
#include "ngraph/runtime/reference/batch_norm.hpp"
...
...
@@ -357,6 +358,15 @@ private:
args
[
0
]
->
get_data_ptr
<
const
T
>
(),
out
[
0
]
->
get_data_ptr
<
T
>
(),
element_count
);
break
;
}
case
OP_TYPEID
:
:
Atan2
:
{
size_t
element_count
=
shape_size
(
node
.
get_output_shape
(
0
));
reference
::
atan2
<
T
>
(
args
[
0
]
->
get_data_ptr
<
const
T
>
(),
args
[
1
]
->
get_data_ptr
<
const
T
>
(),
out
[
0
]
->
get_data_ptr
<
T
>
(),
element_count
);
break
;
}
case
OP_TYPEID
:
:
AvgPool
:
{
const
op
::
AvgPool
*
avg_pool
=
static_cast
<
const
op
::
AvgPool
*>
(
&
node
);
...
...
src/ngraph/runtime/intelgpu/intelgpu_backend.cpp
View file @
6e405b81
...
...
@@ -2050,6 +2050,7 @@ shared_ptr<runtime::Executable>
break
;
}
case
OP_TYPEID
:
:
AllReduce
:
case
OP_TYPEID
:
:
Atan2
:
case
OP_TYPEID
:
:
BatchMatMul
:
case
OP_TYPEID
:
:
BroadcastDistributed
:
case
OP_TYPEID
:
:
BroadcastLike
:
...
...
src/ngraph/runtime/interpreter/int_executable.hpp
View file @
6e405b81
...
...
@@ -85,6 +85,7 @@
#include "ngraph/runtime/reference/argmin.hpp"
#include "ngraph/runtime/reference/asin.hpp"
#include "ngraph/runtime/reference/atan.hpp"
#include "ngraph/runtime/reference/atan2.hpp"
#include "ngraph/runtime/reference/avg_pool.hpp"
#include "ngraph/runtime/reference/batch_mat_mul.hpp"
#include "ngraph/runtime/reference/batch_norm.hpp"
...
...
@@ -367,6 +368,15 @@ private:
args
[
0
]
->
get_data_ptr
<
const
T
>
(),
out
[
0
]
->
get_data_ptr
<
T
>
(),
element_count
);
break
;
}
case
OP_TYPEID
:
:
Atan2
:
{
size_t
element_count
=
shape_size
(
node
.
get_output_shape
(
0
));
reference
::
atan2
<
T
>
(
args
[
0
]
->
get_data_ptr
<
const
T
>
(),
args
[
1
]
->
get_data_ptr
<
const
T
>
(),
out
[
0
]
->
get_data_ptr
<
T
>
(),
element_count
);
break
;
}
case
OP_TYPEID
:
:
AvgPool
:
{
const
op
::
AvgPool
*
avg_pool
=
static_cast
<
const
op
::
AvgPool
*>
(
&
node
);
...
...
src/ngraph/runtime/plaidml/unit_test.manifest
View file @
6e405b81
...
...
@@ -103,6 +103,7 @@ scatter_nd_add_2d_to_3d
# To be triaged -- bad kernels, numerical accuracy, edge conditions,
# unimplemented functionality, &c
atan2
cos
erf
sin
...
...
src/ngraph/runtime/reference/atan2.hpp
0 → 100644
View file @
6e405b81
//*****************************************************************************
// Copyright 2017-2019 Intel Corporation
//
// 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.
//*****************************************************************************
#pragma once
#include <cmath>
#include <cstddef>
namespace
ngraph
{
namespace
runtime
{
namespace
reference
{
template
<
typename
X
,
typename
Y
,
typename
Z
>
void
atan2
(
const
X
*
py
,
const
Y
*
px
,
Z
*
pout
,
size_t
count
)
{
for
(
size_t
i
=
0
;
i
<
count
;
i
++
)
{
*
pout
++
=
static_cast
<
Z
>
(
std
::
atan2
(
*
py
++
,
*
px
++
));
}
}
}
}
}
src/ngraph/serializer.cpp
View file @
6e405b81
...
...
@@ -33,6 +33,7 @@
#include "ngraph/op/argmin.hpp"
#include "ngraph/op/asin.hpp"
#include "ngraph/op/atan.hpp"
#include "ngraph/op/atan2.hpp"
#include "ngraph/op/avg_pool.hpp"
#include "ngraph/op/batch_norm.hpp"
#include "ngraph/op/broadcast.hpp"
...
...
@@ -820,6 +821,12 @@ shared_ptr<Node> JSONDeserializer::deserialize_node(json node_js)
node
=
make_shared
<
op
::
Atan
>
(
args
[
0
]);
break
;
}
case
OP_TYPEID
:
:
Atan2
:
{
node
=
make_shared
<
op
::
Atan2
>
(
args
[
0
],
args
[
1
],
read_auto_broadcast
(
node_js
,
"autob"
));
break
;
}
case
OP_TYPEID
:
:
AvgPool
:
{
auto
window_shape
=
node_js
.
at
(
"window_shape"
).
get
<
vector
<
size_t
>>
();
...
...
@@ -2179,6 +2186,15 @@ json JSONSerializer::serialize_node(const Node& n)
}
case
OP_TYPEID
:
:
Atan
:
{
break
;
}
case
OP_TYPEID
:
:
Atan2
:
{
auto
tmp
=
dynamic_cast
<
const
op
::
Atan2
*>
(
&
n
);
if
(
tmp
->
get_autob
().
m_type
!=
op
::
AutoBroadcastType
::
NONE
)
{
node
[
"autob"
]
=
write_auto_broadcast
(
tmp
->
get_autob
());
}
break
;
}
case
OP_TYPEID
:
:
AvgPool
:
{
auto
tmp
=
dynamic_cast
<
const
op
::
AvgPool
*>
(
&
n
);
...
...
test/backend/binary_elementwise.in.cpp
View file @
6e405b81
...
...
@@ -90,6 +90,44 @@ NGRAPH_TEST(${BACKEND_NAME}, add_overload)
(
test
::
NDArray
<
float
,
2
>
({{
6
,
8
},
{
10
,
12
}})).
get_vector
()));
}
NGRAPH_TEST
(
$
{
BACKEND_NAME
},
atan2
)
{
Shape
shape
{
30
};
auto
X
=
make_shared
<
op
::
Parameter
>
(
element
::
f32
,
shape
);
auto
Y
=
make_shared
<
op
::
Parameter
>
(
element
::
f32
,
shape
);
auto
f
=
make_shared
<
Function
>
(
make_shared
<
op
::
Atan2
>
(
Y
,
X
),
ParameterVector
{
X
,
Y
});
auto
backend
=
runtime
::
Backend
::
create
(
"${BACKEND_NAME}"
);
// Create some tensors for input/output
shared_ptr
<
runtime
::
Tensor
>
x
=
backend
->
create_tensor
(
element
::
f32
,
shape
);
shared_ptr
<
runtime
::
Tensor
>
y
=
backend
->
create_tensor
(
element
::
f32
,
shape
);
shared_ptr
<
runtime
::
Tensor
>
result
=
backend
->
create_tensor
(
element
::
f32
,
shape
);
std
::
vector
<
float
>
xref
;
std
::
vector
<
float
>
yref
;
std
::
vector
<
float
>
zref
;
int
halfelts
=
shape
.
at
(
0
)
/
2
;
float
scale
=
1.0
/
(
halfelts
*
4.0
*
std
::
atan
(
1.0
));
for
(
int
i
=
0
;
i
<
halfelts
;
++
i
)
{
float
theta
=
i
*
scale
;
zref
.
push_back
(
theta
);
xref
.
push_back
(
static_cast
<
float
>
((
i
+
1
)
*
std
::
cos
(
theta
)));
yref
.
push_back
(
static_cast
<
float
>
((
i
+
1
)
*
std
::
sin
(
theta
)));
zref
.
push_back
(
-
theta
);
xref
.
push_back
(
static_cast
<
float
>
((
i
+
1
)
*
std
::
cos
(
-
theta
)));
yref
.
push_back
(
static_cast
<
float
>
((
i
+
1
)
*
std
::
sin
(
-
theta
)));
}
copy_data
(
x
,
xref
);
copy_data
(
y
,
yref
);
auto
handle
=
backend
->
compile
(
f
);
handle
->
call_with_validate
({
result
},
{
x
,
y
});
EXPECT_TRUE
(
test
::
all_close_f
(
read_vector
<
float
>
(
result
),
(
zref
)));
}
NGRAPH_TEST
(
$
{
BACKEND_NAME
},
multiply
)
{
Shape
shape
{
2
,
2
};
...
...
test/copy.cpp
View file @
6e405b81
...
...
@@ -79,6 +79,11 @@ TEST(copy, atan)
ASSERT_TRUE
(
check_unary
<
op
::
Atan
>
());
}
TEST
(
copy
,
atan2
)
{
ASSERT_TRUE
(
check_binary
<
op
::
Atan2
>
());
}
TEST
(
copy
,
broadcast
)
{
Shape
shape1
{
1
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment