Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for input_size (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/Block.java

     * limitations under the License.
     */
    package org.gradle.cache.internal.btree;
    
    public abstract class Block {
        static final int LONG_SIZE = 8;
        static final int INT_SIZE = 4;
        static final int SHORT_SIZE = 2;
    
        private BlockPayload payload;
    
        protected Block(BlockPayload payload) {
            this.payload = payload;
            payload.setBlock(this);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/layout_optimization_layout_assignment_to_nchw.mlir

             -> tensor<1x1x3x8xf32>
    
      func.return %0 : tensor<1x1x3x8xf32>
    }
    
    // CHECK-LABEL: func @transposeConv2DBackpropInput
    func.func @transposeConv2DBackpropInput(
      %input_sizes: tensor<4xi32>,
      %filter: tensor<1x1x3x8xf32>,
      %out_backprop: tensor<1x32x32x8xf32>
    ) -> tensor<1x32x32x3xf32> {
    
      // CHECK: %[[INPUT_PERM:[0-9]*]] = "tf.DataFormatVecPermute"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9K 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. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FileBackedBlockStore.java

            nextBlock += length;
            return pos;
        }
    
        private final class BlockImpl extends Block {
            private static final int HEADER_SIZE = 1 + INT_SIZE; // type, payload size
            private static final int TAIL_SIZE = INT_SIZE;
    
            private BlockPointer pos;
            private int payloadSize;
    
            private BlockImpl(BlockPayload payload, BlockPointer pos) {
                this(payload);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top