Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 135 for SAME (0.14 sec)

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

    //    the op conservatively which means that different op instances need
    //    dependencies. This is realized by always returning the same string ("")
    //    in this case. In fact, we could return any string here, as long as it is
    //    the same string for all op instances without ordering tokens.
    std::optional<std::string> CollectiveReduceV2Op::GetResourceInstanceStr() {
    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. src/reflect/value.go

    		// so v.ptr + offset is still the correct address.
    		val := add(v.ptr, offset, "same as &v[i], i < tt.len")
    		fl := v.flag&(flagIndir|flagAddr) | v.flag.ro() | flag(typ.Kind()) // bits same as overall array
    		return Value{typ, val, fl}
    
    	case Slice:
    		// Element flag same as Elem of Pointer.
    		// Addressable, indirect, possibly read-only.
    		s := (*unsafeheader.Slice)(v.ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      @parameterized.named_parameters(
          ('none', None, False, False, quant_opts_pb2.TF, False, 'SAME'),
          ('relu', nn_ops.relu, False, False, quant_opts_pb2.TF, False, 'SAME'),
          ('relu6', nn_ops.relu6, False, False, quant_opts_pb2.TF, False, 'SAME'),
          ('with_bias', None, True, False, quant_opts_pb2.TF, False, 'SAME'),
          (
              'with_bias_and_relu',
              nn_ops.relu,
              True,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            outputContains("capabilities: [[capability group='test', name='test', version='1.3'], [capability group='test', name='test2', version='2.3']]")
            // transformed outputs should belong to same component as original
            outputContains("artifacts: [test-1.3.jar.txt (test:test:1.3), test2-2.3.jar.txt (test:test2:2.3)]")
            outputContains("components: [test:test:1.3, test:test2:2.3]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/LocalCache.java

       * the segment.
       */
      final int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final int segmentShift;
    
      /** The segments, each of which is a specialized hash table. */
      final Segment<K, V>[] segments;
    
      /** The concurrency level. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // all), or relative or absolute file paths.
    //
    // - All arguments must have the same version suffix. Different queries are not
    // allowed, even if they refer to the same version.
    //
    // - All arguments must refer to packages in the same module at the same version.
    //
    // - Package path arguments must refer to main packages. Pattern arguments
    // will only match main packages.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

       * the segment.
       */
      final int segmentMask;
    
      /**
       * Shift value for indexing within segments. Helps prevent entries that end up in the same segment
       * from also ending up in the same bucket.
       */
      final int segmentShift;
    
      /** The segments, each of which is a specialized hash table. */
      final Segment<K, V>[] segments;
    
      /** The concurrency level. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

            padding_array.emplace_back(v);
          }
    
          if (IsSamePadding(conv_op, strides, dilation, padding_array)) {
            // Check if padding is "SAME".
            padding = "SAME";
          } else {
            padding = "EXPLICIT";
            explicit_padding.push_back(0);
            explicit_padding.push_back(0);
            explicit_padding.append(padding_array);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        const auto [stride_height, stride_width] = GetStrides(op);
    
        // Below convolution arithmetic for `SAME` padding calculation is
        // referenced from
        // https://www.tensorflow.org/api_docs/python/tf/nn/convolution. The
        // following condition must hold true for padding to be `SAME`:
        // output_spatial_shape[i] = ceil(input_spatial_shape[i] / strides[i])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/generic.rules

    (NeqInter x y) => (NeqPtr (ITab x) (ITab y))
    (EqSlice x y)  => (EqPtr  (SlicePtr x) (SlicePtr y))
    (NeqSlice x y) => (NeqPtr (SlicePtr x) (SlicePtr y))
    
    // Load of store of same address, with compatibly typed value and same size
    (Load <t1> p1 (Store {t2} p2 x _))
    	&& isSamePtr(p1, p2)
    	&& t1.Compare(x.Type) == types.CMPeq
    	&& t1.Size() == t2.Size()
    	=> x
    (Load <t1> p1 (Store {t2} p2 _ (Store {t3} p3 x _)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top