Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Explicit (0.21 sec)

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

    // needed.
    //
    // Because coefficient-wise binary operations support implicit broadcasting, we
    // should be very careful with this optimization, and do not accidentally
    // produce incorrect concat operations.
    class HoistCwiseBinaryOutOfConcat : public OpRewritePattern<TF::ConcatV2Op> {
     public:
      explicit HoistCwiseBinaryOutOfConcat(MLIRContext* context)
          : OpRewritePattern<TF::ConcatV2Op>(context) {}
    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/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

     public:
      // Sets benefit to 10 to make this pattern more preferred than smaller local
      // transformations like `stablehlo.transpose`->`tfl.transpose`, as this
      // pattern involves `stablehlo.transpose` in some cases.
      explicit RewriteQuantizedDotGeneralOpToTflFullyConnectedOrBatchMatmulOp(
          MLIRContext* ctx)
          : OpRewritePattern<stablehlo::DotGeneralOp>(ctx, /*benefit=*/10) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    `日本語`                                 // UTF-8 input text as a raw literal
    "\u65e5\u672c\u8a9e"                    // the explicit Unicode code points
    "\U000065e5\U0000672c\U00008a9e"        // the explicit Unicode code points
    "\xe6\x97\xa5\xe6\x9c\xac\xe8\xaa\x9e"  // the explicit UTF-8 bytes
    </pre>
    
    <p>
    If the source code represents a character as two code points, such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // Add an TF.PadOp before the LHS if there is explicit_padding on a 3D
        // Convolution. This is needed because TF.Conv3DOp doesn't support EXPLICIT.
        if (padding == "EXPLICIT" && num_spatial_dims == 3) {
          auto lhs_type =
              mlir::dyn_cast<RankedTensorType>(conv_op.getLhs().getType());
          RankedTensorType padding_attr_type = mlir::RankedTensorType::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		}
    	}
    	return fmt.Sprintf("%*s%sSizeofArgs:\n%s", indent, "", field, args)
    }
    
    // TemplateParamName is the name of a template parameter that the
    // demangler introduced for a lambda that has explicit template
    // parameters.  This is a prefix with an index.
    type TemplateParamName struct {
    	Prefix string
    	Index  int
    }
    
    func (tpn *TemplateParamName) print(ps *printState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      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;
      auto padding_is_valid = GetPaddingFromString(paddings.str(), &padding);
      if (!padding_is_valid.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // TODO(b/142268695) Re-evaluate whether we need this class v.s. directly using
    // and TF function name as MLIR function name after b/142268695 is root caused.
    class NameUniquifier : public OpOrArgNameMapper {
     public:
      explicit NameUniquifier(const FunctionLibraryDefinition& flib)
          : flib_(flib) {}
    
     private:
      bool IsUnique(llvm::StringRef name) override {
        return !flib_.Contains(std::string(name));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass outlines the body of a `tf_device.cluster` into a function and
        replaces the `tf_device.cluster` op with an equivalent `tf_device.cluster_func`
        op. Implicit operands will be captured and materialized as explicit arguments to
        the newly created functions and associated `tf_device.cluster_func` ops.
    
        For example, the following:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

            } else if (createNewEntry || valueReference.isLoading()) {
              removeLoadingValue(key, hash, computingValueReference);
              return null;
            } else {
              removeEntry(e, hash, RemovalCause.EXPLICIT);
              return null;
            }
          } finally {
            unlock();
            postWriteCleanup();
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "description": "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.",
              "format": "int32",
              "type": "integer"
            },
            "revisionHistoryLimit": {
              "description": "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.",
              "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top