Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for op_names (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

          return failure();
    
        Operation *inner_op;
    
        StringRef op_name = op->getName().stripDialect();
        if (!func_symbols_.contains(op_name)) {
          std::string tf_op_name = llvm::formatv(
              "{0}.{1}", TF::TensorFlowDialect::getDialectNamespace(), op_name);
          OperationState state =
              OperationState(loc, tf_op_name, inner_op_operands, new_types, attrs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

        mlir_op_names.insert(std::move(mlir_name));
      }
    }
    
    std::string TfLiteToMlir(absl::string_view tflite_op_name) {
      StringRef op_name(tflite_op_name.data(), tflite_op_name.size());
      return op_name.lower();
    }
    
    std::unique_ptr<tflite::ModelT> CreateMutableModelFromFile(
        const tflite::Model* input_model) {
      auto copied_model = std::make_unique<tflite::ModelT>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_experimental.cc

      // `TF_AttrBuilderCheckCanRunOnDevice()` call(s) on the same `builder`.
      std::set<std::string> attr_names;
    };
    
    TF_AttrBuilder* TF_NewAttrBuilder(const char* op_name) {
      return new TF_AttrBuilder(op_name);
    }
    
    void TF_DeleteAttrBuilder(TF_AttrBuilder* builder) { delete builder; }
    
    void TF_AttrBuilderSetType(TF_AttrBuilder* builder, const char* attr_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/controllermanager_test.go

    		names.TTLController,
    		names.BootstrapSignerController,
    		names.TokenCleanerController,
    		names.NodeIpamController,
    		names.NodeLifecycleController,
    		names.TaintEvictionController,
    		cpnames.ServiceLBController,
    		cpnames.NodeRouteController,
    		cpnames.CloudNodeLifecycleController,
    		names.PersistentVolumeBinderController,
    		names.PersistentVolumeAttachDetachController,
    		names.PersistentVolumeExpanderController,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_test_util.cc

      return op;
    }
    
    TFE_Op* SendOp(TFE_Context* ctx, TFE_TensorHandle* in,
                   const std::string& op_name, const std::string& send_device,
                   const std::string& recv_device,
                   tensorflow::uint64 send_device_incarnation) {
      TF_Status* status = TF_NewStatus();
      TFE_Op* op = TFE_NewOp(ctx, op_name.c_str(), status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_OpAddInput(op, in, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

    auto* dynamism_op_counter = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v2/dynamism_op_counter",
        "Counts how many ops are dynamic", "op_name");
    
    auto* dynamism_function_counter = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/api/v2/dynamism_function_counter",
        "Counts how many functions are dynamic", "has_dynamism");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

        auto custom_op = llvm::isa<CustomOp>(op);
        if (custom_op) {
          auto q = llvm::cast<CustomOp>(op);
          std::string op_name = q.getCustomCode().str();
          if ((custom_op_map.find(op_name) == custom_op_map.end()) ||
              !custom_op_map.find(op_name)->second.no_side_effect)
            return failure();
        }
        rewriter.eraseOp(op);
        return success();
      }
      quant::CustomOpMap custom_op_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top