Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Builders (0.52 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let results = (outs TFL_TensorOf<[F32, QI8, QI16]>:$y);
    
      // This builder doesn't work with quantized type, so it can only be used by
      // non-quantization tablegen patterns. Currently, it is used by the
      // elementwise-move reordering pattern in the optimize_patterns.td
      let builders = [
        OpBuilder<(ins "Value":$input),
        [{
          $_state.addOperands({input});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/Request$Builder;-><init>()V
    HSPLokhttp3/Request$Builder;-><init>(Lokhttp3/Request;)V
    HSPLokhttp3/Request$Builder;->build()Lokhttp3/Request;
    HSPLokhttp3/Request$Builder;->header(Ljava/lang/String;Ljava/lang/String;)Lokhttp3/Request$Builder;
    HSPLokhttp3/Request$Builder;->method(Ljava/lang/String;Lokhttp3/RequestBody;)Lokhttp3/Request$Builder;
    HSPLokhttp3/Request$Builder;->url(Ljava/lang/String;)Lokhttp3/Request$Builder;
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        q_params = tflite::CreateQuantizationParameters(
            builder_, builder_.CreateVector<float>(mins),
            builder_.CreateVector<float>(maxs));
      }
      return tflite::CreateTensor(
          builder_, builder_.CreateVector(shape), tflite_element_type,
          /*buffer=*/0, builder_.CreateString(name), q_params,
          /*is_variable=*/false, /*sparsity=*/0, /*shape_signature=*/0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize.cc

                                                   Builder *builder) {
      RankedTensorType ty = mlir::RankedTensorType::get(
          {static_cast<int32_t>(values.size())}, builder->getIntegerType(32));
      return DenseIntElementsAttr::get(ty, values);
    }
    
    DenseIntElementsAttr GetI64ElementsAttr(ArrayRef<int64_t> values,
                                            Builder *builder) {
      RankedTensorType ty = RankedTensorType::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // and a return operation to return the Graph results.
      builder_.setInsertionPointToEnd(&graph_op.getBody().front());
      builder_.create<mlir::tf_executor::FetchOp>(graph_op.getLoc(),
                                                  inst_to_return);
      builder_.setInsertionPointToEnd(bb);
      builder_.create<mlir::func::ReturnOp>(mlir::UnknownLoc::get(context_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          RankedTensorType::get(static_cast<int32_t>(1), builder.getI32Type());
      auto out_segids_cst = builder.create<TF::ConstOp>(
          builder.getI32TensorAttr(flattened_out_segids));
      auto contracting_segids_cst = builder.create<TF::ConstOp>(
          builder.getI32TensorAttr(flattened_contracting_segids));
      auto num_segids_tensor =
          builder.create<TF::ConstOp>(builder.getI32IntegerAttr(1));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	pack(b *Builder, a *Action, afile string, ofiles []string) error
    	// ld runs the linker to create an executable starting at mainpkg.
    	ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error
    	// ldShared runs the linker to create a shared library containing the pkgs built by toplevelactions
    	ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          op.getOperation());
    }
    
    void EqualOp::build(OpBuilder& builder, OperationState& result, Value x,
                        Value y, BoolAttr incompatible_shape_error) {
      auto result_type = DeduceEqualCmpOpType(&builder, result.location, x, y,
                                              incompatible_shape_error);
      return build(builder, result, result_type, x, y, incompatible_shape_error);
    }
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          op.getOperation());
    }
    
    void NotEqualOp::build(OpBuilder &builder, OperationState &result, Value x,
                           Value y, BoolAttr incompatible_shape_error) {
      auto result_type = DeduceEqualCmpOpType(&builder, result.location, x, y,
                                              incompatible_shape_error);
      return build(builder, result, result_type, x, y, incompatible_shape_error);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      }
    
      // Otherwise, build a new concatenation op with non-empty values.
      mlir::OpBuilder builder(getOperation());
      auto new_concat = builder.create<TFL::ConcatenationOp>(
          getLoc(), getType(), non_empty_values,
          builder.getIntegerAttr(builder.getIntegerType(32), getAxis()),
          builder.getStringAttr(getFusedActivationFunction()));
      return new_concat.getResult();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top