Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 89 for output_types (0.29 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

          !op.getAdjY() ? create_z_x_transpose_op(input_rhs) : input_rhs;
    
      Type output_type = op.getResult().getType();
      auto no_input = rewriter.create<TFL::NoValueOp>(
          op->getLoc(), rewriter.getNoneType(), rewriter.getUnitAttr());
      auto fc_op = rewriter.create<TFL::FullyConnectedOp>(
          op->getLoc(), ArrayRef<Type>{output_type},
          /*input=*/legalized_lhs, /*filter=*/legalized_rhs, /*bias=*/no_input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.cc

      }
    
      for (auto result : llvm::zip(getResultTypes(), getOutputSpecs())) {
        Type outputType = std::get<0>(result);
        Attribute outputSpec = std::get<1>(result);
        if (!isValidQuantizationSpec(outputSpec, outputType)) {
          return emitOpError() << "has incompatible specification " << outputSpec
                               << " and output type " << outputType;
        }
      }
      return success();
    }
    
    LogicalResult StatisticsOp::verify() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.cc

      }
    
      for (auto result : llvm::zip(getResultTypes(), getOutputSpecs())) {
        Type outputType = std::get<0>(result);
        Attribute outputSpec = std::get<1>(result);
        if (!isValidQuantizationSpec(outputSpec, outputType)) {
          return emitOpError() << "has incompatible specification " << outputSpec
                               << " and output type " << outputType;
        }
      }
      return success();
    }
    
    LogicalResult StatisticsOp::verify() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/ops.h

      DataType input_type(int32_t o) const { return node_->input_type(o); }
      Output input(int32_t i) const;
    
      int32 num_outputs() const { return node_->num_outputs(); }
      DataType output_type(int32_t o) const { return node_->output_type(o); }
      Output output(int32_t i) const;
    
      Node* node() const { return node_; }
    
      uint64 hash(int32_t index) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      return kTfLiteOk;
    }
    
    TfLiteStatus QuantizeModel(ModelT* model, const TensorType& input_type,
                               const TensorType& output_type, bool allow_float,
                               std::string& output_buffer) {
      return QuantizeModel(model, input_type, output_type, allow_float,
                           /*operator_names=*/{}, TensorType_INT8, output_buffer);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

      TF_RETURN_IF_ERROR(OutputTypesForNode(node_def, *op_def, &output_dtys));
    
      mlir::MLIRContext* context = tfr_module_.getContext();
      llvm::SmallVector<mlir::Type, 4> input_tys, output_tys;
      mlir::Builder builder(context);
      for (auto ty : input_dtys) {
        mlir::Type elt_ty;
        TF_RETURN_IF_ERROR(ConvertDataType(ty, builder, &elt_ty));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		return resultError("program instantiation failed: "+err.Error(), apiservercel.ErrorTypeInternal)
    	}
    	return CompilationResult{
    		Program:            prog,
    		ExpressionAccessor: expressionAccessor,
    		OutputType:         ast.OutputType(),
    	}
    }
    
    func mustBuildEnvs(baseEnv *environment.EnvSet) variableDeclEnvs {
    	requestType := BuildRequestType()
    	namespaceType := BuildNamespaceType()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/legalize_hashtables.cc

     public:
      using OpRewritePattern<TF::HashTableV2Op>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::HashTableV2Op hashtable_op,
                                    PatternRewriter& rewriter) const override {
        auto output_type = RankedTensorType::get(
            {1}, TF::ResourceType::get(rewriter.getContext()));
    
        // Hash the shared name to generate integer hash table id. The TFLite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

    }
    
    Status ConvertToTensorProto(const ElementsAttr attr, TensorProto* output) {
      auto type = attr.getShapedType();
      auto shape = type.getShape();
      DataType output_dtype;
      TF_RETURN_IF_ERROR(ConvertToDataType(type, &output_dtype));
      output->set_dtype(output_dtype);
      ConvertToTensorShapeProto(shape, output->mutable_tensor_shape());
    
      if (auto tensor_attr = mlir::dyn_cast<mlir::TF::TensorProtoAttr>(attr))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

            !bmm_op.getAdjY() ? create_z_x_transpose_op(input_rhs) : input_rhs;
    
        Type output_type = bmm_op.getResult().getType();
        auto no_input = rewriter.create<TFL::NoValueOp>(
            bmm_op->getLoc(), rewriter.getNoneType(), rewriter.getUnitAttr());
        auto fc_op = rewriter.create<TFL::FullyConnectedOp>(
            bmm_op->getLoc(), ArrayRef<Type>{output_type},
            /*input=*/output_lhs, /*filter=*/output_rhs, /*bias=*/no_input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top