@@ -361,66 +361,6 @@ bool AclEltwiseExecutor::init(const EltwiseAttrs &eltwiseAttrs, const std::vecto
361
361
return acl_op;
362
362
};
363
363
break ;
364
- case Algorithm::EltwiseRelu:
365
- if (aclEltwiseAttrs.alpha == 0 ) {
366
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ],
367
- ActivationLayerInfo::ActivationFunction::RELU))
368
- return false ;
369
- } else {
370
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ],
371
- {ActivationLayerInfo::ActivationFunction::LEAKY_RELU, aclEltwiseAttrs.alpha }))
372
- return false ;
373
- }
374
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
375
- auto acl_op = std::make_unique<NEActivationLayer>();
376
- if (aclEltwiseAttrs.alpha == 0 ) {
377
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], ActivationLayerInfo::ActivationFunction::RELU);
378
- } else {
379
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ],
380
- {ActivationLayerInfo::ActivationFunction::LEAKY_RELU, aclEltwiseAttrs.alpha });
381
- }
382
- return acl_op;
383
- };
384
- break ;
385
- case Algorithm::EltwiseGeluErf:
386
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ], ActivationLayerInfo::ActivationFunction::GELU))
387
- return false ;
388
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
389
- auto acl_op = std::make_unique<NEActivationLayer>();
390
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], ActivationLayerInfo::ActivationFunction::GELU);
391
- return acl_op;
392
- };
393
- break ;
394
- case Algorithm::EltwiseElu:
395
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ],
396
- {ActivationLayerInfo::ActivationFunction::ELU, aclEltwiseAttrs.alpha }))
397
- return false ;
398
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
399
- auto acl_op = std::make_unique<NEActivationLayer>();
400
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], {ActivationLayerInfo::ActivationFunction::ELU, aclEltwiseAttrs.alpha });
401
- return acl_op;
402
- };
403
- break ;
404
- case Algorithm::EltwiseTanh:
405
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ],
406
- {ActivationLayerInfo::ActivationFunction::TANH, 1 .f , 1 .f }))
407
- return false ;
408
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
409
- auto acl_op = std::make_unique<NEActivationLayer>();
410
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ],
411
- {ActivationLayerInfo::ActivationFunction::TANH, 1 .f , 1 .f });
412
- return acl_op;
413
- };
414
- break ;
415
- case Algorithm::EltwiseSigmoid:
416
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ], ActivationLayerInfo::ActivationFunction::LOGISTIC))
417
- return false ;
418
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
419
- auto acl_op = std::make_unique<NEActivationLayer>();
420
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], ActivationLayerInfo::ActivationFunction::LOGISTIC);
421
- return acl_op;
422
- };
423
- break ;
424
364
case Algorithm::EltwiseAbs:
425
365
if (!NEAbsLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ]))
426
366
return false ;
@@ -430,24 +370,6 @@ bool AclEltwiseExecutor::init(const EltwiseAttrs &eltwiseAttrs, const std::vecto
430
370
return acl_op;
431
371
};
432
372
break ;
433
- case Algorithm::EltwiseSqrt:
434
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ], ActivationLayerInfo::ActivationFunction::SQRT))
435
- return false ;
436
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
437
- auto acl_op = std::make_unique<NEActivationLayer>();
438
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], ActivationLayerInfo::ActivationFunction::SQRT);
439
- return acl_op;
440
- };
441
- break ;
442
- case Algorithm::EltwiseSoftRelu:
443
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ], ActivationLayerInfo::ActivationFunction::SOFT_RELU))
444
- return false ;
445
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
446
- auto acl_op = std::make_unique<NEActivationLayer>();
447
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], ActivationLayerInfo::ActivationFunction::SOFT_RELU);
448
- return acl_op;
449
- };
450
- break ;
451
373
case Algorithm::EltwiseExp:
452
374
if (!NEExpLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ]))
453
375
return false ;
@@ -457,28 +379,6 @@ bool AclEltwiseExecutor::init(const EltwiseAttrs &eltwiseAttrs, const std::vecto
457
379
return acl_op;
458
380
};
459
381
break ;
460
- case Algorithm::EltwiseClamp:
461
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ],
462
- {ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, aclEltwiseAttrs.beta , aclEltwiseAttrs.alpha }))
463
- return false ;
464
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
465
- auto acl_op = std::make_unique<NEActivationLayer>();
466
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ],
467
- {ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, aclEltwiseAttrs.beta , aclEltwiseAttrs.alpha });
468
- return acl_op;
469
- };
470
- break ;
471
- case Algorithm::EltwiseSwish:
472
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ],
473
- {ActivationLayerInfo::ActivationFunction::SWISH, aclEltwiseAttrs.alpha }))
474
- return false ;
475
- exec_func = [this ]() -> std::unique_ptr<IFunction> {
476
- auto acl_op = std::make_unique<NEActivationLayer>();
477
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ],
478
- {ActivationLayerInfo::ActivationFunction::SWISH, aclEltwiseAttrs.alpha });
479
- return acl_op;
480
- };
481
- break ;
482
382
case Algorithm::EltwisePrelu:
483
383
if (!NEPReluLayer::validate (&srcTensorsInfo[0 ], &srcTensorsInfo[1 ], &dstTensorsInfo[0 ]))
484
384
return false ;
@@ -488,12 +388,27 @@ bool AclEltwiseExecutor::init(const EltwiseAttrs &eltwiseAttrs, const std::vecto
488
388
return acl_op;
489
389
};
490
390
break ;
391
+ case Algorithm::EltwiseRelu:
392
+ case Algorithm::EltwiseGeluErf:
393
+ case Algorithm::EltwiseElu:
394
+ case Algorithm::EltwiseTanh:
395
+ case Algorithm::EltwiseSigmoid:
396
+ case Algorithm::EltwiseSqrt:
397
+ case Algorithm::EltwiseSoftRelu:
398
+ case Algorithm::EltwiseClamp:
399
+ case Algorithm::EltwiseSwish:
491
400
case Algorithm::EltwiseHswish:
492
- if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ], ActivationLayerInfo::ActivationFunction::HARD_SWISH))
401
+ if (!NEActivationLayer::validate (&srcTensorsInfo[0 ], &dstTensorsInfo[0 ], getActivationLayerInfo (aclEltwiseAttrs.algorithm ,
402
+ aclEltwiseAttrs.alpha ,
403
+ aclEltwiseAttrs.beta ,
404
+ aclEltwiseAttrs.gamma )))
493
405
return false ;
494
406
exec_func = [this ]() -> std::unique_ptr<IFunction> {
495
407
auto acl_op = std::make_unique<NEActivationLayer>();
496
- acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], ActivationLayerInfo::ActivationFunction::HARD_SWISH);
408
+ acl_op->configure (&srcTensors[0 ], &dstTensors[0 ], getActivationLayerInfo (aclEltwiseAttrs.algorithm ,
409
+ aclEltwiseAttrs.alpha ,
410
+ aclEltwiseAttrs.beta ,
411
+ aclEltwiseAttrs.gamma ));
497
412
return acl_op;
498
413
};
499
414
break ;
0 commit comments