Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for init_values (0.19 sec)

  1. tensorflow/compiler/jit/xla_cluster_util_test.cc

          "variable",
      });
    
      EXPECT_EQ(names, expected);
    }
    
    Status MakeLoop(Scope s, Output init_value, absl::string_view loop_name) {
      s = s.NewSubScope(std::string(loop_name));
      ops::internal::Enter enter(s.WithOpName("init_value"), init_value, loop_name);
      ops::Merge merge(s.WithOpName("merge"), {init_value, init_value});
      Output next_iteration =
          ops::NextIteration(s.WithOpName("next_itr"), merge.output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

        }
    
        if (input_values.hasRank() && output_values.hasRank() &&
            input_values.getRank() != output_values.getRank()) {
          return func.emitError() << "Input " << kValues << " and output "
                                  << kValues << " should have the same rank";
        }
      } else {
        auto input_values = GetInputType(func, kValues);
        if (!RankEquals(input_values, 1) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

        %1 = "tf_device.cluster"() ( {
          %init_value = "tf.ReadVariableOp"(%resource_handle)
          "tf.AssignAddVariableOp"(%resource_handle, %init_value)
          %new_value = "tf.ReadVariableOp"(%resource_handle)
          tf_device.return %new_value
        })
        ```
    
        After this pass, the computation would become:
    
        ```mlir
        %resource_handle = "tf.VarHandleOp"()
        %init_value = "tf.ReadVariableOp"(%resource_handle)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/MathTesting.java

        for (int exponent : asList(2, 3, 4, 9, 15, 16, 17, 24, 25, 30)) {
          int x = 1 << exponent;
          intValues.add(x, x + 1, x - 1);
        }
        intValues.add(9999).add(10000).add(10001).add(1000000); // near powers of 10
        intValues.add(5792).add(5793); // sqrt(2^25) rounded up and down
        POSITIVE_INTEGER_CANDIDATES = intValues.build();
        NEGATIVE_INTEGER_CANDIDATES =
            ImmutableList.copyOf(
                Iterables.concat(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/defer_activation_transpose.cc

      void rewrite(AddOp op, PatternRewriter& rewriter) const override {
        DeferRhsTransposeForBinaryOp(op, rewriter);
      }
    };
    
    // Rewrites the `reduce_window(transpose(%activation), %init_value)` patterns to
    // `transpose(reduce_window(%activation), %init_value)`, deferring the transpose
    // to the result. The reduce function should be equivalent to
    // `stablehlo.maximum`, representing max pooling.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. tensorflow/c/while_loop_test.cc

      }
    
      void Run(std::initializer_list<int> input_values) {
        Run(outputs_, input_values);
      }
    
      void Run(const std::vector<TF_Output>& run_outputs,
               std::initializer_list<int> input_values) {
        DCHECK_EQ(inputs_.size(), input_values.size());
        std::vector<std::pair<TF_Operation*, TF_Tensor*>> inputs(inputs_.size());
        int i = 0;
        for (int v : input_values) {
          inputs[i] = {inputs_[i].oper, Int32Tensor(v)};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

        } else {
          llvm::SmallVector<Value> input_values(node_output_tensors.size(),
                                                scalar_one);
          for (const auto& [output_index, tensor_index, tensor_value] :
               node_output_tensors) {
            input_values[tensor_index] = tensor_value;
          }
          identity_op = builder.create<TF::IdentityNOp>(
              new_loc, TypeRange(ValueRange(input_values)), input_values);
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

        return "Unfreeze large constants.";
      }
    
      void runOnOperation() override;
    
     private:
      Option<int64_t> CreateSizeThresholdInBytesOption(const int64_t init_value) {
        return Option<int64_t>(
            *this, "size_threshold_in_bytes", llvm::cl::init(init_value),
            llvm::cl::desc(
                "Lower threshold of the constant size for unfreezing. Constants "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

        }
    
        def "test Groovy eager collection types assignment for #description"() {
            def initValue = inputType.contains("Map<") ? "[:]" : "[]"
            def inputDeclaration = "$inputType input = $initValue"
            groovyBuildFile(inputDeclaration, inputValue, operation)
    
            expect:
            runAndAssert("myTask", expectedResult)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

          Type current_input_type = mlir::cast<TypeAttr>(input_types[i]).getValue();
          if (current_input_type != target_input_type) {
            input_values[i] =
                rewriter.create<TF::CastOp>(loc, result_type, input_values[i]);
          }
        }
      }
    
      const SymbolTable& symbol_table_;
      const bool materialize_derived_attrs_;
      const llvm::SmallDenseSet<StringRef, 4> fixed_elt_type_attrs_{"i32_", "i64_",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top