Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for stride_w (0.09 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        attributes.emplace_back(builder.getNamedAttr(
            "limit_indices",
            BuildVhloTensorV1Attr(shape, op->limit_indices, builder)));
        attributes.emplace_back(builder.getNamedAttr(
            "strides", BuildVhloTensorV1Attr(shape, op->strides, builder)));
        return;
      }
      if (const auto* op = op_union.AsStablehloConvolutionOptions()) {
        if (!(op->window_strides.empty())) {
          std::vector<int64_t> shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

      if (!TFDataFormatIsNDHWC(op)) return failure();
    
      auto tf_op = cast<TF::Conv3DOp>(op);
    
      IntegerAttr stride_depth, stride_height, stride_width;
      if (!TFIntListIs1XYZ1(op, "strides", &stride_depth, &stride_height,
                            &stride_width))
        return failure();
    
      IntegerAttr dilation_depth_factor, dilation_height_factor,
          dilation_width_factor;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. src/image/gif/writer_test.go

    		t.Fatal("colorTablesMatch() == false, expected true")
    	}
    }
    
    func TestEncodeCroppedSubImages(t *testing.T) {
    	// This test means to ensure that Encode honors the Bounds and Strides of
    	// images correctly when encoding.
    	whole := image.NewPaletted(image.Rect(0, 0, 100, 100), palette.Plan9)
    	subImages := []image.Rectangle{
    		image.Rect(0, 0, 50, 50),
    		image.Rect(50, 0, 100, 50),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top