ONE - On-device Neural Engine
Loading...
Searching...
No Matches
arm_compute::CLCastBool Class Reference

Class to run CLCastBoolKernel. This converts the boolean input tensor to the output tensor's type. More...

#include <CLCastBool.h>

Collaboration diagram for arm_compute::CLCastBool:

Public Member Functions

void configure (ICLTensor *input, ICLTensor *output)
 Initialise the kernel's input and output.
 

Detailed Description

Class to run CLCastBoolKernel. This converts the boolean input tensor to the output tensor's type.

Definition at line 60 of file CLCastBool.h.

Member Function Documentation

◆ configure()

void CLCastBool::configure ( ICLTensor *  input,
ICLTensor *  output 
)

Initialise the kernel's input and output.

Parameters
[in]inputInput tensor. Data types supported: U8
[out]outputOutput tensor. Data types supported: U8/S8/U16/S16/U32/F16/F32.

Definition at line 47 of file CLCastBool.cpp.

48{
49 auto k = std::make_unique<CLCastBoolKernel>();
50 k->configure(input, output);
51 _kernel = std::move(k);
52}

The documentation for this class was generated from the following files: