Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for input_size (0.22 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

          scalar_mul(dilation_rate_value, scalar_sub(filter_size, one)), one);
    
      // output_size = (input_size + stride - 1) / stride
      Value output_size = scalar_div(
          scalar_add(input_size, scalar_sub(stride_value, one)), stride_value);
      // padding_needed = std::max(
      //     0,
      //     (output_size - 1) * stride + effective_filter_size - input_size)
      Value padding_needed = scalar_sub(
          scalar_add(effective_filter_size_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. tensorflow/c/c_test_util.cc

          }
        }
      }
      return found_dtype && found_value;
    }
    
    bool IsAddN(const tensorflow::NodeDef& node_def, int n) {
      if (node_def.op() != "AddN" || node_def.name() != "add" ||
          node_def.input_size() != n) {
        return false;
      }
      bool found_t = false;
      bool found_n = false;
      for (const auto& attr : node_def.attr()) {
        if (attr.first == "T") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. tensorflow/cc/tools/freeze_saved_model.cc

    StatusOr<string> GetVarHandleName(
        const std::unordered_map<string, NodeDef*>& name_to_node_map,
        string node_name) {
      const NodeDef* node = name_to_node_map.at(node_name);
      while (node->input_size() > 0) {
        auto parent = name_to_node_map.find(node->input(0));
        if (parent == name_to_node_map.end()) break;
        node = parent->second;
        if (node->op() != "Identity") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

                            std::vector<const Edge*> control_deps, Output* size) {
      // If slice_size[i] >= 0 then slice_size[i] = slice_size[i].
      //
      // If slice_size[i] == -1 then slice_size[i] = input_size[i] -
      // begin[i].
      //
      // If slice_size[i] < -1 then executing the slice will throw an error, and we
      // don't do anything here.  We've already filtered these cases out in
      // IsRewritableSlice.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list.mlir

    // CHECK:  [[ZERO_1:%.*]] = arith.constant dense<0> : tensor<i32>
    // CHECK:  [[INPUT_SIZE:%.*]] = "tf.Gather"([[SHAPE]], [[ZERO_1]]) <{validate_indices = true}> : (tensor<2xi32>, tensor<i32>) -> tensor<i32>
    // CHECK:  [[SIZE_DIFF:%.*]] = "tf.Sub"([[SIZE]], [[INPUT_SIZE]]) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 39.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          // $filter_sizes
          CompileTimeConstantOperand<TF::Conv2DBackpropFilterOp, 1>,
          CompileTimeConstantOperand<TF::Conv2DBackpropInputOp, 0>,  // $input_sizes
          // $filter_sizes
          CompileTimeConstantOperand<TF::Conv3DBackpropFilterV2Op, 1>,
          // $input_sizes
          CompileTimeConstantOperand<TF::Conv3DBackpropInputV2Op, 0>,
          // $group_assignment
          CompileTimeConstantOperand<TF::CrossReplicaSumOp, 1>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeConv2DBackpropInput : Pat<
      (TF_Conv2DBackpropInputOp $input_sizes, $filter, $out_backprop,
         IsIntList1XY1:$strides,
         BoolAttr:$use_cudnn_on_gpu,
         IsSameOrValid:$padding,
         I64ArrayAttr:$explicit_paddings,
         IsDataFormatNHWC:$data_format,
         IsAllOnes:$dilations),
      (TFL_TransposeConvOp $input_sizes,
         (TFL_TransposeOp $filter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/math/big/nat_test.go

    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    	x := rndNat(50000)
    	y := rndNat(40)
    	allocSize := allocBytes(func() {
    		nat(nil).mul(x, y)
    	})
    	inputSize := uint64(len(x)+len(y)) * _S
    	if ratio := allocSize / uint64(inputSize); ratio > 10 {
    		t.Errorf("multiplication uses too much memory (%d > %d times the size of inputs)", allocSize, ratio)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

            if (StringUtil.isBlank(command)) {
                throw new CrawlerSystemException("command is empty.");
            }
    
            final Map<String, String> params = new HashMap<>();
            params.put("$INPUT_FILE", inputFile.getAbsolutePath());
            params.put("$OUTPUT_FILE", outputFile.getAbsolutePath());
    
            final List<String> cmdList = parseCommand(command, params);
            if (logger.isInfoEnabled()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            private IndexRoot root;
    
            @Override
            protected byte getType() {
                return 0x77;
            }
    
            @Override
            protected int getSize() {
                return Block.INT_SIZE + Block.LONG_SIZE + (3 * Block.LONG_SIZE) * maxChildIndexEntries;
            }
    
            @Override
            public void read(DataInputStream instr) throws IOException {
                int count = instr.readInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top