Пример #1
0
def get_dtype(ngraph_type):  # type: (NgraphType) -> np.dtype
    """Return a numpy.dtype for an ngraph element type."""
    np_type = next((np_type for (ng_type, np_type)
                    in ngraph_to_numpy_types_map if ng_type == ngraph_type), None)

    if np_type:
        return np.dtype(np_type)

    raise NgraphTypeError('Unidentified data type %s', ngraph_type)
Пример #2
0
def get_element_type(data_type):  # type: (NumericType) -> NgraphType
    """Return an ngraph element type for a Python type or numpy.dtype."""
    if data_type is int:
        log.warning('Converting int type of undefined bitwidth to 32-bit ngraph integer.')
        return NgraphType.i32

    if data_type is float:
        log.warning('Converting float type of undefined bitwidth to 32-bit ngraph float.')
        return NgraphType.f32

    ng_type = next((ng_type for (ng_type, np_type)
                    in ngraph_to_numpy_types_map if np_type == data_type), None)
    if ng_type:
        return ng_type

    raise NgraphTypeError('Unidentified data type %s', data_type)
Пример #3
0
def get_element_type_str(data_type: NumericType) -> str:
    """Return an ngraph element type string representation for a Python type or numpy dtype."""
    if data_type is int:
        log.warning("Converting int type of undefined bitwidth to 32-bit ngraph integer.")
        return "i32"

    if data_type is float:
        log.warning("Converting float type of undefined bitwidth to 32-bit ngraph float.")
        return "f32"

    ng_type = next(
        (ng_type for (ng_type, np_type) in ngraph_to_numpy_types_str_map if np_type == data_type),
        None,
    )
    if ng_type:
        return ng_type

    raise NgraphTypeError("Unidentified data type %s", data_type)