You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/python/paddle/v2/fluid/layers/utils.py

23 lines
521 B

"""
All util layers.
"""
from ..layer_helper import LayerHelper
from ..framework import Variable
__all__ = ['get_places']
def get_places(trainer_count, device_type="CPU"):
helper = LayerHelper('get_places', **locals())
out_places = helper.create_tmp_variable(dtype=helper.input_dtype())
helper.append_op(
type='get_places',
outputs={"Out": [out_places]},
attrs={
"device_type": device_type,
'trainer_count': trainer_count,
})
return out_places