Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for constexpr (0.11 sec)

  1. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

    tensorflow::string* g_test_model_dir = nullptr;
    }  // namespace
    
    namespace tflite {
    namespace optimize {
    namespace {
    
    using mlir::lite::BufferType;
    using mlir::lite::CustomOpMap;
    using mlir::lite::QuantizeWeights;
    constexpr bool kUseUpdatedHybridSchemeDefault = true;
    
    std::unique_ptr<ModelT> CreateMutableModelFromFile(const Model* input_model) {
      auto copied_model = std::make_unique<ModelT>();
      input_model->UnPackTo(copied_model.get(), nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

        }
    
        private fun getExpectedTypeByTypeCast(expression: PsiElement): KaType? {
            val typeCastExpression =
                expression.unwrapQualified<KtBinaryExpressionWithTypeRHS> { castExpr, expr -> castExpr.left == expr } ?: return null
            return getKtExpressionType(typeCastExpression)
        }
    
        private fun getExpectedTypeOfFunctionParameter(expression: PsiElement): KaType? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ir/func.go

    // reference of a func. If so, it returns referenced Func; otherwise nil.
    //
    // This is only usable before walk.walkConvertInterface, which converts to an
    // OMAKEFACE.
    func IsIfaceOfFunc(n Node) *Func {
    	if n, ok := n.(*ConvExpr); ok && n.Op() == OCONVIFACE {
    		if name, ok := n.X.(*Name); ok && name.Op() == ONAME && name.Class == PFUNC {
    			return name.Func
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top