Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for created (0.07 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                                        tflite::BuiltinOperator builtin) {
      auto it = opcode_index_map_.insert({op_name, 0});
    
      // If the insert succeeded, the opcode has not been created already. Create a
      // new operator code and update its index value in the map.
      if (it.second) {
        it.first->second = opcodes_.size();
        auto custom_code = builtin == tflite::BuiltinOperator_CUSTOM
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      return UnrankedTensorType::get(element_type);
    }
    
    // Returns true if the op creates a TensorList.
    bool IsTensorListInitOp(Operation* op) {
      return isa<TensorListReserveOp>(op) || isa<EmptyTensorListOp>(op) ||
             isa<TensorListFromTensorOp>(op);
    }
    
    // Returns the `element_shape` operand of the ops that create a TensorList.
    Value GetElementShapeOperand(Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top