Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getDilations (0.29 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                   "requires non negative explicit paddings");
      }
    
      ArrayRef<Attribute> strides = op.getStrides().getValue();
      ArrayRef<Attribute> dilations = op.getDilations().getValue();
      if (failed(
              VerifyConvOpAttributes(num_dims, strides, dilations, op.getLoc()))) {
        return failure();
      }
    
      int64_t input_channels = ShapedType::kDynamic;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

          loc, new_result_type, input, new_filter_sizes, backprop.getOutBackprop(),
          strides, backprop.getUseCudnnOnGpu(), backprop.getPadding(),
          backprop.getExplicitPaddings(), backprop.getDataFormat(),
          backprop.getDilations());
    
      // For example, if new filter shape is [4, 4, 12, 64], old filter shape
      // is [7, 7, 3, 64] with block_size 2.
      // Below transforms will be applied to the filter:
      // 1. Reshape to [4, 4, 2, 2, 3, 64];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // implemented.
        if (input_ty.hasStaticShape() && filter_ty.hasStaticShape())
          return failure();
    
        ArrayRef<Attribute> dilations = op.getDilations().getValue();
        ArrayRef<Attribute> strides = op.getStrides().getValue();
        ArrayRef<Attribute> explicit_paddings;
        if (padding == tensorflow::Padding::EXPLICIT) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/library/freeze/LineNumberIgnoringViolationStore.java

                .collect(toList());
            delegate.save(rule, violationsWithoutLineNumbers);
        }
    
        @Override
        public List<String> getViolations(ArchRule rule) {
            return delegate.getViolations(rule);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

                        invokeJacocoReport(antBuilder, projectName, allClassesDirs, allSourcesDirs, encoding, executionData, violationRules);
                    } catch (Exception e) {
                        String violations = getViolations(antBuilder);
                        jacocoCheckResult.setSuccess(false);
                        jacocoCheckResult.setFailureMessage(violations != null ? violations : e.getMessage());
                    }
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top