Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 95 for eraseOp (0.31 sec)

  1. tensorflow/compiler/jit/xla_cluster_util.cc

             std::find(node.output_types().begin(), node.output_types().end(),
                       DT_RESOURCE) != node.output_types().end();
    }
    
    void RemoveFromXlaCluster(NodeDef* node_def) {
      node_def->mutable_attr()->erase(kXlaClusterAttr);
    }
    
    void RemoveFromXlaCluster(Node* node) { node->ClearAttr(kXlaClusterAttr); }
    
    namespace {
    typedef xla_config_registry::XlaGlobalJitLevel XlaGlobalJitLevel;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

            )
    
            val result = build("help", "-I", "init.gradle")
            assertThat(result.output, containsString("Type of `testExtension` receiver is Any"))
        }
    
        @Test
        fun `given extension with erased generic type parameters, its accessor is typed Any`() {
    
            withDefaultSettingsIn("buildSrc")
    
            withFile(
                "buildSrc/build.gradle.kts",
                """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/phi.go

    	// Generate phi ops for each variable.
    	for n := range vartypes {
    		s.insertVarPhis(n, vars[n], defs[n], vartypes[n])
    	}
    
    	// Resolve FwdRefs to the correct write or phi.
    	s.resolveFwdRefs()
    
    	// Erase variable numbers stored in AuxInt fields of phi ops. They are no longer needed.
    	for _, b := range s.f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == ssa.OpPhi {
    				v.AuxInt = 0
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Ascii.java

      /**
       * Alternate name for {@link #SP}.
       *
       * @since 8.0
       */
      public static final byte SPACE = 32;
    
      /**
       * Delete: This character is used primarily to "erase" or "obliterate" erroneous or unwanted
       * characters in perforated tape.
       *
       * @since 8.0
       */
      public static final byte DEL = 127;
    
      /**
       * The minimum value of an ASCII character.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. pkg/adsc/delta.go

    			resourceName = ""
    		}
    		key := resourceKey{
    			Name:    resourceName,
    			TypeURL: typeURL,
    		}
    		existing, f := c.tree[key]
    		if f {
    			// We are watching directly now, so erase any parents
    			existing.Parents = nil
    			existing.Children = nil
    		} else {
    			c.tree[key] = resourceNode{
    				Parents:  make(keySet),
    				Children: make(keySet),
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. android/guava/src/com/google/common/base/Ascii.java

      /**
       * Alternate name for {@link #SP}.
       *
       * @since 8.0
       */
      public static final byte SPACE = 32;
    
      /**
       * Delete: This character is used primarily to "erase" or "obliterate" erroneous or unwanted
       * characters in perforated tape.
       *
       * @since 8.0
       */
      public static final byte DEL = 127;
    
      /**
       * The minimum value of an ASCII character.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/object.h

      void Set(const String& key, Handle h) {
        value_.dict()[key.value_] = std::move(h.value_);
      }
    
      /// Removes `key` from the object's attributes.
      void Unset(const String& key) { value_.dict().erase(key.value_); }
      // TODO(b/): Adding dir() is in the future.
     private:
      // Private since it is in general unsafe.
      explicit Object(TaggedValue v) : Handle(std::move(v)) {}
      template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top