Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getUnknownLoc (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

                output_zero_point_value);
    
        Value conv_output_value = op.getResult();
        auto output_uniform_quantized_tensor_type = RankedTensorType::getChecked(
            rewriter.getUnknownLoc(),
            /*shape=*/
            mlir::cast<TensorType>(conv_output_value.getType()).getShape(),
            output_uniform_quantized_type);
    
        SmallVector<Type> new_conv_output_types = {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        const auto func_type =
            builder.getFunctionType(/*inputs=*/{}, /*results=*/{});
        auto summary_func = builder.create<func::FuncOp>(
            builder.getUnknownLoc(), /*sym_name=*/"summary", func_type);
        summary_func.setPrivate();
        summary_func->setAttr("quantization_summary",
                              builder.getStringAttr(log_message));
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            min_maxs);
        // TODO(fengliuai): this quantization dimension isn't correct.
        axis = b.getI64IntegerAttr(tensor.quantization->quantized_dimension);
      }
      return b.create<mlir::quantfork::StatisticsOp>(b.getUnknownLoc(), res,
                                                     layer_stats, axis_stats, axis);
    }
    
    // Returns true if this is a basic LSTM op.
    bool IsBasicLSTMOp(tflite::BuiltinOptionsUnion op_union) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
Back to top