Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for comp_name (0.38 sec)

  1. tensorflow/c/eager/c_api_test_util.h

    TFE_Op* AllReduceOp(TFE_Context* ctx, TFE_TensorHandle* in, int group_size);
    
    // Return a SendOp op `op_name` with send input tensor `in` and attributes
    // `send_device`, `recv_device`, and `send_device_incarnation` set.
    TFE_Op* SendOp(TFE_Context* ctx, TFE_TensorHandle* in,
                   const std::string& op_name, const std::string& send_device,
                   const std::string& recv_device,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 17 23:43:59 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util_test.cc

          "read_ref_var",
          "variable",
      });
    
      EXPECT_EQ(names, expected);
    }
    
    Status MakeLoop(Scope s, Output init_value, absl::string_view loop_name) {
      s = s.NewSubScope(std::string(loop_name));
      ops::internal::Enter enter(s.WithOpName("init_value"), init_value, loop_name);
      ops::Merge merge(s.WithOpName("merge"), {init_value, init_value});
      Output next_iteration =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. operator/pkg/util/progress/progress.go

    // on a new line, and create a new bar. For example, this becomes "x succeeded", "waiting for y, z".
    func (p *Log) reportProgress(component string) func() {
    	return func() {
    		cmpName := name.ComponentName(component)
    		cliName := name.UserFacingComponentName(cmpName)
    		p.mu.Lock()
    		defer p.mu.Unlock()
    		cmp := p.components[component]
    		// The component has completed
    		cmp.mu.Lock()
    		finished := cmp.finished
    		cmpErr := cmp.err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/c/eager/gradients.h

      // least one input of the op is watched and has a trainable dtype.
      // op_name is optional and is used for debugging only.
      void RecordOperation(absl::Span<AbstractTensorHandle* const> inputs,
                           absl::Span<AbstractTensorHandle* const> outputs,
                           GradientFunction* gradient_function,
                           const string& op_name = "");
      // Returns whether any tensor in a list of tensors is being watched and has
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/raise_custom_ops.cc

        if (llvm::isa<TFL::CustomTfOp>(op) || llvm::isa<TFL::CustomOp>(op)) return;
    
        std::string op_name = op->getName().getIdentifier().str();
        // Wrap the operation, if
        // - the op is targeted explicitly, or
        // - the op isn't registered when there are no target list.
        if (target_op_names.contains(op_name) ||
            (target_op_names.empty() && !op->isRegistered())) {
          custom_ops.push_back(op);
        }
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/c/eager/tracing_utils.h

    #define TENSORFLOW_C_EAGER_TRACING_UTILS_H_
    
    #include "tensorflow/c/eager/abstract_operation.h"
    
    namespace tensorflow {
    namespace tracing {
    Status MaybeSetOpName(AbstractOperation*, const char* op_name);
    }  // namespace tracing
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 17:39:44 UTC 2022
    - 1016 bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/cc/framework/scope_internal.h

      Impl(const Scope& other, Tags::OpName, const string& name,
           const string& op_name);
      Impl(const Scope& other, Tags::ControlDeps,
           std::vector<Operation> control_deps, bool clear_control_deps);
      Impl(const Scope& other, Tags::Device, const string& device);
      Impl(const Scope& other, Tags::SingleUseScope, const string& op_name);
      Impl(const Scope& other, Tags::ExitOnError);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/stablehlo_util.h

    // The consolidated logic to verify if each final op is acceptable or not.
    // Also see `PrintOpStatsPass` and `CheckAcceptedOpsPass`.
    bool IsAcceptedOp(llvm::StringRef dialect_name, llvm::StringRef op_name,
                      const std::vector<std::string> &accepted_dialects);
    
    }  // namespace odml
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 21:06:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top