Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for get_target (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

        std::function<std::string(Operation*)> get_target,
        std::function<bool(Operation*)> is_ignored_op) {
      // Iteratively find clusters of different targets within the `block`.
      // Whenever we see an operation that is assigned to an accelerator target
      // (ie. get_target(op) != ""), we try to merge it into the last cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // `get_target` that takes an op and returns the target name. `is_ignored_op` is
    // a hook to ignore certain ops that are not included in any clusters.
    llvm::StringMap<SmallVector<Cluster>> BuildAllClusters(
        Block& block, const TF::SideEffectAnalysis::Info& side_effect_analysis,
        std::function<std::string(Operation*)> get_target,
        std::function<bool(Operation*)> is_ignored_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

         *
         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget() {
            return target;
        }
    
        /**
         * Sets the authentication target.
         *
         * @param target The authentication target.
         */
        public void setTarget(String target) {
            this.target = target;
        }
    
        /**
         * Returns the target information block.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

         * @return A <code>String</code> containing the authentication target.
         */
        public String getTarget () {
            return this.target;
        }
    
    
        /**
         * Sets the authentication target.
         *
         * @param target
         *            The authentication target.
         */
        public void setTarget ( String target ) {
            this.target = target;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/tasks/ant/AntTarget.java

            }
        }
    
        /**
         * Returns the Ant target to execute.
         */
        @Internal
        public Target getTarget() {
            return target;
        }
    
        /**
         * Sets the Ant target to execute.
         */
        public void setTarget(Target target) {
            this.target = target;
        }
    
        /**
         * Returns the Ant project base directory to use when executing the target.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultAntBuilder.java

            getAntProject().getTargets().remove("");
    
            // Add an adapter for each newly added target
            Set<String> newAntTargets = new HashSet<String>(getAntProject().getTargets().keySet());
            newAntTargets.removeAll(existingAntTargets);
            for (String name : newAntTargets) {
                final Target target = getAntProject().getTargets().get(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/BsJobLog.java

        public void setStartTime(Long value) {
            registerModifiedProperty("startTime");
            this.startTime = value;
        }
    
        public String getTarget() {
            checkSpecifiedProperty("target");
            return convertEmptyToNull(target);
        }
    
        public void setTarget(String value) {
            registerModifiedProperty("target");
            this.target = value;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

        public void setPath(String value) {
            registerModifiedProperty("path");
            this.path = value;
        }
    
        public String getTarget() {
            checkSpecifiedProperty("target");
            return convertEmptyToNull(target);
        }
    
        public void setTarget(String value) {
            registerModifiedProperty("target");
            this.target = value;
        }
    
        public String getThumbnailId() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java

            return source;
        }
    
        public void setSource(MetadataGraphVertex source) {
            this.source = source;
        }
    
        public MetadataGraphVertex getTarget() {
            return target;
        }
    
        public void setTarget(MetadataGraphVertex target) {
            this.target = target;
        }
    
        @Override
        public String toString() {
            return "[ " + "FROM:("
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/objz.go

    				q = obj.Appendp(q, c.newprog)
    
    				q.As = obj.ANOP
    				p1.To.SetTarget(q)
    				p2.To.SetTarget(q)
    			}
    
    		case obj.ARET:
    			retTarget := p.To.Sym
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				if autosize == 0 {
    					p.As = ABR
    					p.From = obj.Addr{}
    					if retTarget == nil {
    						p.To.Type = obj.TYPE_REG
    						p.To.Reg = REG_LR
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top