aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/prototype/src/TileOperand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/prototype/src/TileOperand.cpp')
-rw-r--r--compute_kernel_writer/prototype/src/TileOperand.cpp28
1 files changed, 12 insertions, 16 deletions
diff --git a/compute_kernel_writer/prototype/src/TileOperand.cpp b/compute_kernel_writer/prototype/src/TileOperand.cpp
index 0eb2ca6a64..e09c833d96 100644
--- a/compute_kernel_writer/prototype/src/TileOperand.cpp
+++ b/compute_kernel_writer/prototype/src/TileOperand.cpp
@@ -23,47 +23,43 @@
*/
#include "ckw/TileOperand.h"
+
#include "ckw/Error.h"
+
#include "src/Prototype.h"
namespace ckw
{
TileOperand::TileOperand(const std::string &name, const TileInfo &info)
- : OperandBase(name),
- _info(info),
- _value{ std::vector<std::string>{ "0" } },
- _constant(false)
+ : OperandBase(name), _info(info), _value{std::vector<std::string>{"0"}}, _constant(false)
{
}
TileOperand::TileOperand(const std::string &name, DataType data_type)
- : OperandBase(name),
- _info(TileInfo{ data_type }),
- _value{ std::vector<std::string>{ "0" } },
- _constant(false)
+ : OperandBase(name), _info(TileInfo{data_type}), _value{std::vector<std::string>{"0"}}, _constant(false)
{
}
TileOperand::TileOperand(const std::string &name, int32_t value)
: OperandBase(name),
- _info(TileInfo{ DataType::Int32 }),
- _value{ std::vector<std::string>{ std::to_string(value) } },
+ _info(TileInfo{DataType::Int32}),
+ _value{std::vector<std::string>{std::to_string(value)}},
_constant(true)
{
}
TileOperand::TileOperand(const std::string &name, float value)
: OperandBase(name),
- _info(TileInfo{ DataType::Fp32 }),
- _value{ std::vector<std::string>{ std::to_string(value) } },
+ _info(TileInfo{DataType::Fp32}),
+ _value{std::vector<std::string>{std::to_string(value)}},
_constant(true)
{
}
TileOperand::TileOperand(const std::string &name, const TileContainer &vals, DataType dt)
: OperandBase(name),
- _info(TileInfo{ dt, static_cast<int32_t>(vals.size()), static_cast<int32_t>(vals[0].size()) }),
+ _info(TileInfo{dt, static_cast<int32_t>(vals.size()), static_cast<int32_t>(vals[0].size())}),
_value(vals),
_constant(true)
{
@@ -73,11 +69,11 @@ prototype::Operand TileOperand::create_impl_operand(prototype::IGpuKernelWriter
{
CKW_UNUSED(writer);
- if(_constant)
+ if (_constant)
{
- if(is_scalar())
+ if (is_scalar())
{
- switch(_info.data_type())
+ switch (_info.data_type())
{
case DataType::Int32:
return prototype::Operand(_value[0][0], prototype::OperandType::ScalarInt32);