Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 97 for op_names (0.22 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_common.cc

           parser.parseAttribute(device, "device", result.attributes) ||
           parser.parseRParen()))
        return mlir::failure();
    
      if (options.has_op_name &&
          parser.parseAttribute(op_name, "op_name", result.attributes))
        return mlir::failure();
    
      if (options.has_symbol_ref &&
          parser.parseAttribute(f, "f", result.attributes))
        return mlir::failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

        dialect_name_of_[op_with_dialect_name] = dialect_name;
        op_name_of_[op_with_dialect_name] = op_name;
        ++total_ops_;
      });
      PrintSummary();
    }
    
    void PrintOpStatsPass::CountOp(
        DenseMap<StringRef, llvm::StringMap<int64_t>> &op_count_map,
        StringRef op_name, StringRef dtype) {
      auto &op_counts = op_count_map[op_name];
      if (auto it = op_counts.find(dtype); it != op_counts.end()) {
        it->second++;
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/verify_tfxla_legalization.cc

            "mlir_second_phase_failed_legalization_op_count",
            "Counts which op fails to legalize", "op_name");
    
    auto* mlir_non_static_op_count = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/"
        "mlir_second_phase_non_static_op_count",
        "Counts which ops do not have static results", "op_name");
    
    auto* mlir_non_static_op_skip_count = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

          }
        }
    
        return success();
      }
    
     private:
      // Parses TFLite Flex op's `custom_options` and returns the TF
      // `op_name` and TF dialect MLIR op attributes.
      static LogicalResult ParseCustomOption(
          StringRef custom_options, Location loc, std::string& op_name,
          SmallVectorImpl<NamedAttribute>& attributes,
          tensorflow::NodeDef& node_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        num_args: The number of inputs.
        device: The tensorflow device. eg. "/CPU:0"
        op_attrs: The tensorflow attributes excluding the func attrs.
        op_func_attrs: The func attrs.
        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          %out_ch = tfrt_fallback_async.createop(%in_ch) key(0) device("/CPU:0")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/quantize.cc

        auto custom_op = llvm::dyn_cast_or_null<CustomOp>(op);
        if (!custom_op) return false;
    
        // Custom op which is marked in the custom op map is quantizable.
        std::string op_name = custom_op.getCustomCode().str();
        return (custom_op_map.find(op_name) == custom_op_map.end()) ? false : true;
      }
    
      static bool AllowDynamicRangeQuantizedOperand(
          Operation* quantized_op, const quant::CustomOpMap& custom_op_map) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/import_quant_stats_pass.cc

      OpBuilder builder(func);
    
      func.walk([&](Operation *op) {
        if (op->hasTrait<OpTrait::IsTerminator>()) return;
        auto op_name = op_to_name_(op);
    
        // Check the named info collection first.
        auto it = name_to_info_.find(op_name);
        if (it != name_to_info_.end()) {
          ImportAsStatsOps(builder, op, it->second.first, it->second.second);
          return;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

        public companion object {
            public val EP_NAME: ExtensionPointName<KaResolveExtensionProvider> =
                ExtensionPointName<KaResolveExtensionProvider>("org.jetbrains.kotlin.kaResolveExtensionProvider")
    
            public fun provideExtensionsFor(module: KtModule): List<KaResolveExtension> {
                return EP_NAME.getExtensionList(module.project).flatMap { it.provideExtensionsFor(module) }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            op_state.operands[1] = shape_op;
          }
        }
      }
      if (op_name == "vhlo.reduce_v1" || op_name == "vhlo.reduce_window_v1" ||
          op_name == "vhlo.sort_v1" || op_name == "vhlo.scatter_v1") {
        op_state.addRegion();
      }
      if (op_name == "vhlo.while_v1") {
        op_state.addRegion();
        op_state.addRegion();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

        public companion object {
            public val EP_NAME: ExtensionPointName<AdditionalKDocResolutionProvider> =
                ExtensionPointName<AdditionalKDocResolutionProvider>("org.jetbrains.kotlin.analysis.additionalKDocResolutionProvider")
    
            public fun resolveKdocFqName(analysisSession: KaSession, fqName: FqName, contextElement: KtElement): Collection<KaSymbol> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top