Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for is_variable (0.24 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

                return LogicalResult::failure();
              }
    
              if (is_variable) {
                input.emitOpError() << "unexpected multiple TPUReplicatedInputOp "
                                    << "for single argument";
                return LogicalResult::failure();
              }
              is_variable = true;
            } else {
              is_non_variable = true;
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_quantized.mlir

    // CHECK-NEXT:       name: "arg19",
    // CHECK-NEXT:       quantization: {
    // CHECK-NEXT:         scale: [ 0.096711 ],
    // CHECK-NEXT:         zero_point: [ 10 ]
    // CHECK-NEXT:       },
    // CHECK-NEXT:       is_variable: true,
    // CHECK-NEXT:       has_rank: true
    // CHECK-NEXT:     }, {
    // CHECK-NEXT:       shape: [ 1, 2048 ],
    // CHECK-NEXT:       type: INT16,
    // CHECK-NEXT:       name: "arg20",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                                      const std::vector<uint8_t>& buffer,
                                      bool is_variable, OpBuilder builder,
                                      Location loc, bool use_stablehlo_constant) {
      if (tensor.sparsity != nullptr) {
        return BuildSparseConstOp(tensor, buffer, builder, loc);
      }
    
      if (is_variable) {
        return BuildVariableOp(tensor, builder, loc);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // marked as a stateful. If so, set the tensor's is_variable as true
      // This is v1 ref variable semantics in the TFLite runtime.
      bool is_variable = false;
      for (auto& use : value.getUses()) {
        is_variable = IsStatefulOperand(use.getOwner(), use.getOperandNumber());
        if (is_variable) {
          break;
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

    // as tensor names may have changed via MLIR constant folding process.
    bool ExpectEqualTensor(const Tensor* tensor, const Tensor* expected_tensor) {
      return (tensor->is_variable() == expected_tensor->is_variable()) &&
             (GetAsVector(tensor->shape()) ==
              GetAsVector(expected_tensor->shape()));
    }
    
    // Finds the match of the quantized tensor from the possible tensors. Each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                return LogicalResult::failure();
              }
    
              if (is_variable) {
                input.emitOpError() << "unexpected multiple TPUReplicatedInputOp "
                                    << "for single argument";
                return LogicalResult::failure();
              }
              is_variable = true;
            } else {
              is_non_variable = true;
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

    };
    
    void ExpectEqualTensor(TensorT* tensor, TensorT* expected_tensor) {
      const float eps = 1e-7;
      EXPECT_THAT(expected_tensor, NotNull());
      EXPECT_THAT(tensor->is_variable, Eq(expected_tensor->is_variable));
      EXPECT_THAT(tensor->shape, Eq(expected_tensor->shape));
      EXPECT_THAT(tensor->type, Eq(expected_tensor->type));
      const auto quantization_params = tensor->quantization.get();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

        fbb_.AddOffset(Tensor::VT_QUANTIZATION, quantization);
      }
      void add_is_variable(bool is_variable) {
        fbb_.AddElement<uint8_t>(Tensor::VT_IS_VARIABLE, static_cast<uint8_t>(is_variable), 0);
      }
      void add_sparsity(::flatbuffers::Offset<tflite::SparsityParameters> sparsity) {
        fbb_.AddOffset(Tensor::VT_SPARSITY, sparsity);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top