Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for input_size (0.25 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/fuzz/fuzz.go

    						// at least one new coverage bit.
    						c.queueForMinimization(result, keepCoverage)
    					} else {
    						// Update the coordinator's coverage mask and save the value.
    						inputSize := len(result.entry.Data)
    						entryNew, err := c.addCorpusEntries(true, result.entry)
    						if err != nil {
    							stop(err)
    							break
    						}
    						if !entryNew {
    							if shouldPrintDebugInfo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. src/crypto/sha512/sha512block_amd64.s

    // Aleksey Sidorov <******@****.***>
    
    #define YFER_SIZE (4*8)
    #define SRND_SIZE (1*8)
    #define INP_SIZE (1*8)
    
    #define frame_YFER (0)
    #define frame_SRND (frame_YFER + YFER_SIZE)
    #define frame_INP (frame_SRND + SRND_SIZE)
    #define frame_INPEND (frame_INP + INP_SIZE)
    
    #define addm(p1, p2) \
    	ADDQ p1, p2; \
    	MOVQ p2, p1
    
    #define COPY_YMM_AND_BSWAP(p1, p2, p3) \
    	VMOVDQU p2, p1;    \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top