push
github
5 of 6 new or added lines in 2 files covered. (83.33%)
4117 existing lines in 34 files now uncovered.11 of 5399 relevant lines covered (0.2%)
0.01 hits per line
1 |
# -*- coding: utf-8 -*-
|
|
UNCOV
2
|
from ....compat import Apply, tt |
× |
UNCOV
3
|
from .base_op import LimbDarkBaseOp |
× |
4 |
|
|
5 |
|
|
UNCOV
6
|
__all__ = ["GetClRevOp"]
|
× |
7 |
|
|
8 |
|
|
UNCOV
9
|
class GetClRevOp(LimbDarkBaseOp): |
× |
10 |
|
|
UNCOV
11
|
__props__ = () |
× |
UNCOV
12
|
func_file = "./get_cl_rev.cc"
|
× |
UNCOV
13
|
func_name = "APPLY_SPECIFIC(get_cl_rev)"
|
× |
14 |
|
|
UNCOV
15
|
def make_node(self, bc): |
× |
UNCOV
16
|
return Apply(self, [tt.as_tensor_variable(bc)], [bc.type()]) |
× |
17 |
|
|
UNCOV
18
|
def infer_shape(self, *args): |
× |
UNCOV
19
|
shapes = args[-1]
|
× |
UNCOV
20
|
return (shapes[0],) |
× |