Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CreateArithmeticOp (0.12 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/cpu_hardware.cc

    }
    
    TAC_REGISTER_CPU_OP(Conv2DOp, CreateConvOp);
    TAC_REGISTER_CPU_OP(DepthwiseConv2DOp, CreateConvOp);
    TAC_REGISTER_CPU_OP(FullyConnectedOp, CreateConvOp);
    TAC_REGISTER_CPU_OP(AddOp, CreateArithmeticOp);
    TAC_REGISTER_CPU_OP(MulOp, CreateArithmeticOp);
    TAC_REGISTER_CPU_OP(ConcatenationOp, CreateConcatOp);
    TAC_REGISTER_CPU_OP(ReshapeOp, CreateConcatOp);
    TAC_REGISTER_CPU_OP(PackOp, CreateConcatOp);
    
    #undef TAC_REGISTER_CPU_OP
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.cc

    TAC_REGISTER_GPU_OP(Conv2DOp, CreateConvOp);
    TAC_REGISTER_GPU_OP(DepthwiseConv2DOp, CreateConvOp);
    TAC_REGISTER_GPU_OP(FullyConnectedOp, CreateConvOp);
    
    TAC_REGISTER_GPU_OP(AddOp, CreateArithmeticOp);
    TAC_REGISTER_GPU_OP(MulOp, CreateArithmeticOp);
    
    #undef TAC_REGISTER_GPU_OP
    }  // namespace
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top