Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 67 of 67 for eraseOp (0.17 sec)

  1. tensorflow/compiler/jit/device_compiler.h

      // Remove the "_class" attribute from the attribute set used to create the
      // compilation cache key. This attribute is information for the colocator
      // and causes false uniqueness between nodes.
      name.mutable_attr()->erase("_class");
      return CompileImpl(compile_options, options, name, args, CompileScope::kOp,
                         DeviceCompileMode::kStrict, ctx, profiler,
                         out_compilation_result, out_executable);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    type VersionPurgeStatusType string
    
    const (
    	// Pending - versioned delete replication is pending.
    	Pending VersionPurgeStatusType = "PENDING"
    
    	// Complete - versioned delete replication is now complete, erase version on disk.
    	Complete VersionPurgeStatusType = "COMPLETE"
    
    	// Failed - versioned delete replication failed.
    	Failed VersionPurgeStatusType = "FAILED"
    )
    
    // Empty returns true if purge status was not set.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

      Walk([&](Value value, ValueConstraint constraint) {
        if (succeeded(IsStaticallyResolved(value, constraint)))
          resolved.insert(value);
      });
      for (Value value : resolved) constraints_.erase(value);
      return *this;
    }
    
    ValuesConstraintSet &ValuesConstraintSet::Reset() {
      constraints_.clear();
      return *this;
    }
    
    size_t ValuesConstraintSet::Size() const { return constraints_.size(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_experimental.cc

      // in an initialized context.
      for (auto d = devices.begin(); d != devices.end();) {
        if (absl::StrContains(d->get()->name(), "CPU:0")) {
          d = devices.erase(d);
        } else {
          ++d;
        }
      }
    
      status->status = tensorflow::unwrap(ctx)->AddDevices(std::move(devices));
    }
    
    void TFE_InsertConfigKeyValue(TFE_Context* ctx, const char* key,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/kernels/xla_ops.cc

        mutex_lock l(mutex_);
        auto it = closures_.find(key);
        DCHECK(it != closures_.end());
        ExecutableClosure<ExecutableType, ClientType> value = std::move(it->second);
        closures_.erase(it);
        return value;
      }
    
      static ExecutableClosureStore* Global() {
        static ExecutableClosureStore* instance = new ExecutableClosureStore;
        return instance;
      }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.cc

      }
      std::vector<string> parts = absl::StrSplit(cpp_class, "::");
      if (parts.front().empty()) {
        // Allow a fully qualified name that starts with "::".
        parts.erase(parts.begin());
      }
      for (int i = 0, end = parts.size(); i < end; ++i) {
        if (i < end - 1) {
          TF_RETURN_IF_ERROR(ValidateCppIdent(
              parts[i], "in namespace component of cpp_class: " + cpp_class));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

              // write acts as a barrier for those IDs).
              VLOG(4) << "      Clearing resource access info for ID " << id;
              per_resource_access_info_.erase(id);
            }
          }
        }
      }
      // Now update access info for `resource_id`.
      auto& access_info = per_resource_access_info_[resource_id];
      if (read_only) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top