Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getUnit (0.13 sec)

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

      int n;
      if (point.isParent()) {
        // The op itself branches to `init` first.
        regions.push_back(
            RegionSuccessor(&getInit(), getInit().front().getArguments()));
      } else if (point.getRegionOrNull() == &getInit()) {
        // `init` branches to `next`, passing along the arguments given to `init`'s
        // yield. Said arguments precede the "other args".
        n = getInitFuncOtherArgs().size();
    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/ir/tf_ops_n_z.cc

        auto delta_attr = delta_tensor.getValues<IntegerAttr>()[0];
        int num_elements;
        if (elem_type.isUnsignedInteger()) {
          uint64_t start = start_attr.getUInt();
          uint64_t limit = limit_attr.getUInt();
          uint64_t delta = delta_attr.getUInt();
          assert(start <= (uint64_t)INT_MAX);
          assert(limit <= (uint64_t)INT_MAX);
          assert(delta <= (uint64_t)INT_MAX);
          num_elements =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        }
    
        for (auto i = 0; i < window_strides.size(); ++i) {
          window_strides_vec.push_back(
              window_strides.getValues<IntegerAttr>()[i].getInt());
        }
    
        for (auto i = 0; i < base_dilations.size(); ++i) {
          base_dilations_vec.push_back(
              base_dilations.getValues<IntegerAttr>()[i].getInt());
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        inferredReturnTypes.assign({result_type});
        return success();
      }
    
      auto stride_h = op.getStrideHAttr().getInt();
      auto stride_w = op.getStrideWAttr().getInt();
      auto dilation_h = op.getDilationHFactorAttr().getInt();
      auto dilation_w = op.getDilationWFactorAttr().getInt();
    
      // We don't have EXPLICIT PADDING in TfLite.
      auto paddings = op.getPadding();
      tensorflow::Padding padding;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    		t.Run(tt.sni, func(t *testing.T) {
    			g := NewWithT(t)
    
    			c := xdstest.ExtractCluster("outbound|8080|foobar|foo.example.org", buildSniTestClustersForSidecar(t, tt.sni))
    			g.Expect(getTLSContext(t, c).GetSni()).To(Equal(tt.expected))
    		})
    	}
    }
    
    func TestBuildClustersWithMutualTlsAndNodeMetadataCertfileOverrides(t *testing.T) {
    	expectedClientKeyPath := "/clientKeyFromNodeMetadata.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.ActionConfiguration.getParams()> does not have raw return type assignable to org.gradle.api.provider.Property in (ActionConfiguration.java:0)
    Method <org.gradle.api.AntBuilder.getAnt()> does not have raw return type assignable to org.gradle.api.provider.Provider in (AntBuilder.java:0)
    Method <org.gradle.api.AntBuilder.getLifecycleLogLevel()> does not have raw return type assignable to org.gradle.api.provider.Property in (AntBuilder.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // Ensures the given integer attribute has the given value.
    class TFL_IntEqualsTo<int n> : AttrConstraint<
        CPred<"$_self.isa<IntegerAttr>() && "
                "$_self.cast<IntegerAttr>().getInt() == " # n>,
        "whose value is " # n>;
    
    // Ensures the given LSTMKernelType attribute has the given value.
    class TFL_LSTMKernelTypeEqualsTo<string value> : AttrConstraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top