Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for OutputTypes (0.1 sec)

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

        OpBuilder builder,
        const std::unique_ptr<tflite::FlatBufferModel>& model_ptr) {
      llvm::SmallVector<Value, 4> operands;
      llvm::SmallVector<mlir::Type, 2> outputTypes;
    
      const tflite::OperatorCodeT& op_code = *op_codes.at(op.opcode_index);
    
      const std::string op_name = GetMlirOpName(op, op_code);
    
      OperationState op_state(loc, op_name);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      }
      mlir::ResultRange op_results = op.getResults();
      // The main_outputs may include tokens that are not among the op_results;
      mlir::TypeRange main_output_types = loader->OutputTypes();
      int nr_main_token_outputs =
          llvm::count_if(main_output_types, tensorflow::IsTokenType);
      if (op_results.size() != main_output_types.size() - nr_main_token_outputs) {
    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