Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for input_size (0.15 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        A recurrent neural network specified by an RNN cell. This Op takes in input
        in a format {batch_size, seq_len, input_size} or
        {seq_len, batch_size, input_size} if it's time-majored.
    
        It implements the following operation for
        each element in the sequence s = 1...sequence_length:
          outputs[s] = state = activation(RNNOp(inputs[s]))
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/metrics/error_collector_inst_test.cc

      context.getOrLoadDialect<TF::TensorFlowDialect>();
      const std::string input_file =
          "tensorflow/compiler/mlir/lite/metrics/testdata/strided_slice.mlir";
      auto input_file_id = StringAttr::get(&context, input_file);
    
      context.enableMultithreading();
    
      auto module =
          LoadModule(&context, tensorflow::GetDataDependencyFilepath(input_file));
      EXPECT_EQ(module.ok(), true);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractorTest.java

            assertEquals("test1 \" test2", list.get(1));
    
            cmd = "test.sh $INPUT_FILE";
            params.clear();
            list = extractor.parseCommand(cmd, params);
            assertEquals(2, list.size());
            assertEquals("test.sh", list.get(0));
            assertEquals("$INPUT_FILE", list.get(1));
    
            cmd = "test.sh $INPUT_FILE $OUTPUT_FILE";
            params.clear();
            list = extractor.parseCommand(cmd, params);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/import_utils.cc

        return errors::InvalidArgument(
            "Could not open input file ",
            string(input_filename.data(), input_filename.size()).c_str());
      }
    
      const auto& input_file = *file_or_err;
      absl::string_view content(input_file->getBufferStart(),
                                input_file->getBufferSize());
      return LoadProtoFromBuffer(content, proto);
    }
    
    Status LoadProtoFromFile(absl::string_view input_filename,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util_test.cc

      TF_ASSERT_OK(mlir::TF::RunBridgeWithStandardPipeline(
          module_ref.get(),
          /*enable_logging=*/true, /*enable_inliner=*/false));
    
      std::string errorMessage;
      auto input_file = mlir::openInputFile(filepath, &errorMessage);
      EXPECT_THAT(input_file, Not(IsNull()));
    
      auto output_stream = mlir::openOutputFile(output_dump, &errorMessage);
      EXPECT_THAT(output_stream, Not(IsNull()));
    
      mlir::PassPipelineCLParser passPipeline(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 18 13:40:21 UTC 2024
    - 5.8K 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. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FreeListBlockStore.java

            private FreeListBlock prev;
            private FreeListBlock next;
    
            @Override
            protected int getSize() {
                return Block.LONG_SIZE + Block.INT_SIZE + Block.INT_SIZE + maxBlockEntries * (Block.LONG_SIZE
                        + Block.INT_SIZE);
            }
    
            @Override
            protected byte getType() {
                return 0x44;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. 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)
  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. 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)
Back to top