Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for op_names (0.21 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/stablehlo_util.cc

      return std::find(accepted_dialects.begin(), accepted_dialects.end(),
                       dialect_name) != accepted_dialects.end();
    }
    
    bool IsAcceptedOp(llvm::StringRef dialect_name, llvm::StringRef op_name,
                      const std::vector<std::string>& accepted_dialects) {
      return IsAcceptedDialect(dialect_name, accepted_dialects);
    }
    
    }  // namespace odml
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 21:06:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/c/eager/c_api_unified_experimental.h

    // `op_type` must outlive `op`.
    void TF_AbstractOpSetOpType(TF_AbstractOp* op, const char* const op_type,
                                TF_Status* s);
    // `op_name` must outlive `op`.
    void TF_AbstractOpSetOpName(TF_AbstractOp* op, const char* const op_name,
                                TF_Status* s);
    // `attr_name` must outlive `op`.
    void TF_AbstractOpSetAttrType(TF_AbstractOp* op, const char* const attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:27:00 UTC 2021
    - 7K bytes
    - Viewed (0)
  4. 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)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                KotlinCoreEnvironment.underApplicationLock {
                    if (applicationArea.hasExtensionPoint(ClassTypePointerFactory.EP_NAME)) return@underApplicationLock
                    CoreApplicationEnvironment.registerApplicationExtensionPoint(
                        ClassTypePointerFactory.EP_NAME,
                        ClassTypePointerFactory::class.java
                    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_unified_experimental.cc

      tsl::Set_TF_Status_from_Status(
          s, unwrap(op)->Reset(op_type,
                               /*raw_device_name=*/nullptr));
    }
    
    void TF_AbstractOpSetOpName(TF_AbstractOp* op, const char* const op_name,
                                TF_Status* s) {
      TracingOperation* tracing_op = dyn_cast<TracingOperation>(unwrap(op));
      if (!tracing_op) {
        tsl::Set_TF_Status_from_Status(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.cc

    #include "tensorflow/lite/c/c_api_types.h"
    
    namespace mlir {
    namespace lite {
    
    std::string TfLiteToMlir(const absl::string_view tflite_op_name) {
      llvm::StringRef op_name(tflite_op_name.data(), tflite_op_name.size());
      return llvm::Twine("tfl.", op_name.lower()).str();
    }
    
    // TODO(fengliuai): check the result for `fully_quantize` flag.
    TfLiteStatus QuantizeModel(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. tensorflow/c/ops.cc

    using ::tensorflow::shape_inference::InferenceContext;
    using ::tensorflow::shape_inference::ShapeHandle;
    
    TF_OpDefinitionBuilder* TF_NewOpDefinitionBuilder(const char* op_name) {
      auto* result = new OpDefBuilder(op_name);
      return reinterpret_cast<TF_OpDefinitionBuilder*>(result);
    }
    
    void TF_DeleteOpDefinitionBuilder(TF_OpDefinitionBuilder* builder) {
      delete reinterpret_cast<OpDefBuilder*>(builder);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 28 22:41:35 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/metrics/types_util.h

    tflite::metrics::ConverterErrorData NewConverterErrorData(
        const std ::string& pass_name, const std::string& error_message,
        tflite::metrics::ConverterErrorData::ErrorCode error_code,
        const std::string& op_name, const Location& location);
    
    }  // namespace TFL
    }  // namespace mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 16:09:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse_test.go

    func dumpRegexp(b *strings.Builder, re *Regexp) {
    	if int(re.Op) >= len(opNames) || opNames[re.Op] == "" {
    		fmt.Fprintf(b, "op%d", re.Op)
    	} else {
    		switch re.Op {
    		default:
    			b.WriteString(opNames[re.Op])
    		case OpStar, OpPlus, OpQuest, OpRepeat:
    			if re.Flags&NonGreedy != 0 {
    				b.WriteByte('n')
    			}
    			b.WriteString(opNames[re.Op])
    		case OpLiteral:
    			if len(re.Rune) > 1 {
    				b.WriteString("str")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
Back to top