예제 #1
0
def pow(x, a):
    logger.debug('pow(x: {}, a: {})'.format(x, a))
    return _KerasNode('pow', tensor=edsl.pow(x.tensor, a))
예제 #2
0
파일: __init__.py 프로젝트: whztt07/plaidml
def pow(x, a):
    return _KerasNode('pow', tensor=edsl.pow(x.tensor, a))