Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for customAction (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    E.g., instead of doing
    
    ====
    include::sample[dir="snippets/buildCache/custom-action/kotlin",files="build.gradle.kts[tags=customAction]"]
    include::sample[dir="snippets/buildCache/custom-action/groovy",files="build.gradle[tags=customAction]"]
    ====
    
    do
    
    ====
    include::sample[dir="snippets/buildCache/configure-task/kotlin",files="build.gradle.kts[tags=configureTask]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

    constexpr char kCustomSgnnProjection[] = "tftext:custom:SgnnProjection";
    constexpr char kTFImplements[] = "tf._implements";
    
    using mlir::TF::FuncAttr;
    using mlir::TF::StringType;
    
    inline ConstBytesAttr CustomOption(OpBuilder* builder,
                                       const std::string& content) {
      return ConstBytesAttr::get(builder->getContext(),
                                 StringRef(content.data(), content.size()));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

    constexpr char kCustomDenseImageWarp[] = "addons:DenseImageWarp";
    constexpr char kTFLFusableOp[] = "tfl_fusable_op";
    
    using mlir::TF::FuncAttr;
    
    inline ConstBytesAttr CustomOption(OpBuilder* builder,
                                       const std::string& content) {
      return ConstBytesAttr::get(builder->getContext(),
                                 StringRef(content.data(), content.size()));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/tfl_stablehlo_pass.cc

     private:
      void runOnOperation() override;
    
      void getDependentDialects(DialectRegistry& registry) const override {
        mlir::stablehlo::registerAllDialects(registry);
      }
      inline TFL::ConstBytesAttr CustomOption(OpBuilder* builder,
                                              const std::string& content) {
        return TFL::ConstBytesAttr::get(builder->getContext(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 06:08:43 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/converter_gen.cc

      assert(def.getName().starts_with("TFL_") && "unexpected op prefix");
      assert(def.getName().ends_with("Op") && "unexpected op suffix");
    
      auto *custom_option = dyn_cast<StringInit>(def.getValueInit("customOption"));
      std::ostringstream oss;
      if (custom_option)
        oss << custom_option->getValue().str();
      else
        oss << def.getName().drop_front(4).drop_back(2).str() << "Options";
      return oss.str();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
Back to top