Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for is_variable (0.17 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

            {
              "shape": [1, 4],
              "name": "input_activation_state18",
              "is_variable": true,
              "quantization": {
                "min": [-0.8],
                "max": [1.6]
              }
            },
            {
              "shape": [1, 2],
              "name": "input_cell_state19",
              "is_variable": true,
              "quantization": {
                "min": [-2.0],
                "max": [4.0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/variable.mlir

    // CHECK-LABEL: main
    func.func @main() -> tensor<3x2xi32> {
      // CHECK: "tfl.pseudo_const"() <{value = dense<0> : tensor<3x2xi32>}> {tfl.is_variable} : () -> tensor<3x2xi32>
      %0 = "tfl.pseudo_const"() {value = dense<0> : tensor<3x2xi32>, tfl.is_variable} : () -> tensor<3x2xi32> loc("variable")
      func.return %0 : tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 470 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/variable.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_to_string - | FileCheck %s
    
    func.func @main() -> tensor<3x2xi32> {
      %0 = "tfl.pseudo_const" () {value = dense<0> : tensor<3x2xi32>, tfl.is_variable} : () -> tensor<3x2xi32> loc("variable")
      func.return %0 : tensor<3x2xi32>
    }
    
    // CHECK:      {
    // CHECK-NEXT:     version: 3,
    // CHECK-NEXT:     operator_codes: [ ],
    // CHECK-NEXT:     subgraphs: [ {
    // CHECK-NEXT:       tensors: [ {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 17:29:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/svdf_v2.mlir

    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         name: "Const",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         is_variable: true,
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 6,
    // CHECK-NEXT:         name: "tfl.svdf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/svdf.mlir

    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         name: "Const",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         is_variable: true,
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 6,
    // CHECK-NEXT:         name: "tfl.svdf",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/unidirectional_sequence_rnn.mlir

    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4, 4 ],
    // CHECK-NEXT:         name: "Const",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    // CHECK-NEXT:         },
    // CHECK-NEXT:         is_variable: true,
    // CHECK-NEXT:         has_rank: true
    // CHECK-NEXT:       }, {
    // CHECK-NEXT:         shape: [ 4 ],
    // CHECK-NEXT:         buffer: 6,
    // CHECK-NEXT:         name: "tfl.unidirectional_sequence_rnn",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/java/source/JavaElementDelegatingTypeSourceWithSmartPointer.kt

    internal class JavaElementDelegatingVariableReturnTypeSourceWithSmartPointer<TYPE : PsiType>(
        override val psiPointer: SmartPsiElementPointer<out PsiVariable>,
        override val factory: JavaElementSourceFactory,
    ) : JavaElementDelegatingTypeSourceWithSmartPointer<PsiVariable, TYPE>() {
    
        override fun getType(psi: PsiVariable): TYPE {
            @Suppress("UNCHECKED_CAST")
            return psi.type as TYPE
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 14 09:25:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/psiTypeProvider/AbstractAnalysisApiKtTypeByPsiTypeProviderTest.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.impl.base.test.cases.components.psiTypeProvider
    
    import com.intellij.psi.PsiElement
    import com.intellij.psi.PsiMethod
    import com.intellij.psi.PsiType
    import com.intellij.psi.PsiVariable
    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.analysis.test.framework.base.AbstractAnalysisApiBasedTest
    import org.jetbrains.kotlin.analysis.test.framework.project.structure.KtTestModule
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/dag_object_graph.py

    
    class Child(tf.Module):
    
      def __init__(self):
        super(Child, self).__init__()
        self.my_variable = tf.Variable(3.)
    
    
    # Creates a dag object graph.
    # There is only one instance of `Child`, but it is reachable via two names.
    # Thus, self.my_variable is reachable via two paths.
    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/cyclic_object_graph.py

      def __init__(self, parent):
        super(ReferencesParent, self).__init__()
        self.parent = parent
        # CHECK: tf_saved_model.global_tensor
        # CHECK-SAME: tf_saved_model.exported_names = ["child.my_variable"]
        self.my_variable = tf.Variable(3.)
    
    
    # Creates a cyclic object graph.
    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.child = ReferencesParent(self)
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top