Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for Inference (0.21 sec)

  1. tensorflow/c/c_api_experimental.cc

      using tensorflow::NodeDef;
      using tensorflow::OpRegistrationData;
      using tensorflow::Tensor;
      using tensorflow::shape_inference::DimensionHandle;
      using tensorflow::shape_inference::InferenceContext;
      using tensorflow::shape_inference::ShapeAndType;
      using tensorflow::shape_inference::ShapeHandle;
    
      const int num_inputs = input_shapes->num_items;
      NodeDef node_def;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 29.4K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

    }
    
    namespace {
    
    // Helper method that creates a shape handle for a shape described by dims.
    tensorflow::shape_inference::ShapeHandle ShapeHandleFromDims(
        tensorflow::shape_inference::InferenceContext* ic, int num_dims,
        const int64_t* dims) {
      if (num_dims != -1) {
        std::vector<tensorflow::shape_inference::DimensionHandle> dim_vec;
        dim_vec.reserve(num_dims);
        for (int i = 0; i < num_dims; ++i) {
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescAnonymousFunctionSymbol.kt

    import org.jetbrains.kotlin.analysis.api.symbols.pointers.KtSymbolPointer
    import org.jetbrains.kotlin.analysis.api.types.KtType
    import org.jetbrains.kotlin.descriptors.FunctionDescriptor
    import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
    import org.jetbrains.kotlin.resolve.descriptorUtil.isExtension
    
    internal class KtFe10DescAnonymousFunctionSymbol(
        override val descriptor: FunctionDescriptor,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescPropertyGetterSymbol.kt

    import org.jetbrains.kotlin.descriptors.PropertyGetterDescriptor
    import org.jetbrains.kotlin.descriptors.hasBody
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
    
    internal class KtFe10DescPropertyGetterSymbol(
        override val descriptor: PropertyGetterDescriptor,
        override val analysisContext: Fe10AnalysisContext
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSamConstructorSymbol.kt

    import org.jetbrains.kotlin.analysis.api.types.KtType
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
    import org.jetbrains.kotlin.resolve.descriptorUtil.isExtension
    import org.jetbrains.kotlin.resolve.sam.SamConstructorDescriptor
    import org.jetbrains.kotlin.resolve.sam.SamTypeAliasConstructorDescriptor
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescFunctionSymbol.kt

    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.resolve.DescriptorUtils
    import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
    import org.jetbrains.kotlin.resolve.calls.tasks.isDynamic
    import org.jetbrains.kotlin.resolve.descriptorUtil.isExtension
    
    internal class KtFe10DescFunctionSymbol private constructor(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 17:23:15 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

    import org.jetbrains.kotlin.name.StandardClassIds
    import org.jetbrains.kotlin.renderer.DescriptorRenderer
    import org.jetbrains.kotlin.renderer.render
    import org.jetbrains.kotlin.resolve.calls.inference.CapturedType
    import org.jetbrains.kotlin.resolve.descriptorUtil.annotationClass
    import org.jetbrains.kotlin.types.*
    import org.jetbrains.kotlin.types.checker.NewCapturedType
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    
    <h3 id="Type_inference">Type inference</h3>
    
    <p>
    A use of a generic function may omit some or all type arguments if they can be
    <i>inferred</i> from the context within which the function is used, including
    the constraints of the function's type parameters.
    Type inference succeeds if it can infer the missing type arguments
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  9. RELEASE.md

    *   Fixes an undefined behavior arising from reference binding to nullptr in
        shape inference
        ([CVE-2021-37676](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-37676))
    *   Fixes a division by 0 in most convolution operators
        ([CVE-2021-37675](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-37675))
    *   Fixes vulnerabilities arising from missing validation in shape inference for
        `Dequantize`
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirErrors.BUILDER_INFERENCE_STUB_RECEIVER) { firDiagnostic ->
            BuilderInferenceStubReceiverImpl(
                firDiagnostic.a,
                firDiagnostic.b,
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.BUILDER_INFERENCE_MULTI_LAMBDA_RESTRICTION) { firDiagnostic ->
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
Back to top