Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for name_$ (1.11 sec)

  1. tensorflow/cc/framework/scope.cc

        for (const Node* node : graph->nodes()) {
          const string& name = node->name();
          (*name_map)[name] = 0;
          // Add all name prefixes ('/' separated).
          size_t idx = -1;
          while ((idx = name.find(kScopeSeparator, idx + 1)) != string::npos) {
            (*name_map)[name.substr(0, idx)] = 0;
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/aot_only_var_handle_op.cc

      OP_REQUIRES_OK(c, c->GetAttr("shared_name", &name_));
    }
    
    void XlaAotOnlyVarHandleOp::Compile(XlaOpKernelContext* context) {
      // Look for a resource of the same name. TF also keys that on the container
      // and type attributes, but that doesn't seem necessary.
      for (const auto& resource : context->xla_context()->resources()) {
        if (resource->kind() == XlaResource::kVariable &&
            resource->name() == name_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/stream_executor/stream_executor_internal.h

                         SP_TimerFns timer_fns);
      ~CPlatform() override;
    
      Id id() const override { return const_cast<int*>(&plugin_id_value_); }
      const std::string& Name() const override { return name_; }
      int VisibleDeviceCount() const override {
        int visible_device_count = 0;
        tensorflow::TF_StatusPtr c_status(TF_NewStatus());
        platform_fns_.get_device_count(&platform_, &visible_device_count,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_unified_experimental_graph.cc

    // "execution" of operation, i.e. adding them to the function.
    class GraphContext : public TracingContext {
     public:
      explicit GraphContext(const char* name)
          : TracingContext(kGraph),
            graph_(new TF_Graph(), TF_DeleteGraph),
            name_(name) {}
    
      void Release() override { delete this; }
    
      TracingOperation* CreateOperation() override {
        return new GraphOperation(graph_.get());
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.cc

          destroy_platform_fns_(destroy_platform_fns),
          device_fns_(std::move(device_fns)),
          stream_executor_(std::move(stream_executor)),
          timer_fns_(std::move(timer_fns)),
          name_(platform.name) {}
    
    CPlatform::~CPlatform() {
      executor_cache_.DestroyAllExecutors();
      platform_fns_.destroy_device_fns(&platform_, &device_fns_);
      platform_fns_.destroy_stream_executor(&platform_, &stream_executor_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api.cc

     public:
      CustomDeviceAPI(TFE_Context* context, TFE_CustomDevice device, void* info,
                      string name)
          : context_(context), device_(device), info_(info), name_(name) {}
    
      ~CustomDeviceAPI() override { device_.delete_device(info_); }
    
      const string& name() override { return name_; }
    
      tensorflow::Status CopyTensorToDevice(
          ImmediateExecutionTensorHandle* handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/go/build/build.go

    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    // if GOOS=android, then files with GOOS=linux are also matched.
    // if GOOS=illumos, then files with GOOS=solaris are also matched.
    // if GOOS=ios, then files with GOOS=darwin are also matched.
    func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {
    	name, _, _ = strings.Cut(name, ".")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    For example, `com.google.code.gson:gson:2.8.9` that has the module name `com.google.gson`.
    
    Others, like `org.apache.commons:commons-lang3:3.10`, may not offer a full module descriptor but will at least contain an `Automatic-Module-Name` entry in their manifest file to define the module's name (`org.apache.commons.lang3` in the example).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // don't inherit from TestInfo.
      ~TestInfo();
    
      // Returns the test case name.
      const char* test_case_name() const { return test_case_name_.c_str(); }
    
      // Returns the test name.
      const char* name() const { return name_.c_str(); }
    
      // Returns the name of the parameter type, or NULL if this is not a typed
      // or a type-parameterized test.
      const char* type_param() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    	}
    }
    
    func (a *Addr) WriteNameTo(w io.Writer) {
    	a.writeNameTo(w, false)
    }
    
    func (a *Addr) writeNameTo(w io.Writer, abiDetail bool) {
    
    	switch a.Name {
    	default:
    		fmt.Fprintf(w, "name=%d", a.Name)
    
    	case NAME_NONE:
    		switch {
    		case a.Reg == REG_NONE:
    			fmt.Fprint(w, a.Offset)
    		case a.Offset == 0:
    			fmt.Fprintf(w, "(%v)", Rconv(int(a.Reg)))
    		case a.Offset != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top