Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 937 for DerivedT (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

        return id;
      }
    
     private:
      void runOnOperation() override {
        ModuleOp op = this->getOperation();
        DerivedT& derived = *static_cast<DerivedT*>(this);
        auto& analysis = this->template getAnalysis<AnalysisT>();
    
        for (auto func : op.getOps<func::FuncOp>())
          if (!func.isExternal())
            derived.runOnFunction(func, analysis.GetAnalysisForFunc(func));
      }
    };
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/Derived.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    
    /** Simple derived class to verify that we handle generics correctly. */
    @GwtCompatible
    class Derived extends Base {
      public Derived(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 03 22:29:45 UTC 2023
    - 908 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/allocators.go

    	}
    	fmt.Fprintf(w, "}\n")
    }
    func genDerived(w io.Writer, d derived, base allocator) {
    	fmt.Fprintf(w, "func (c *Cache) alloc%s(n int) %s {\n", d.name, d.typ)
    	if d.typ[:2] != "[]" || base.typ[:2] != "[]" {
    		panic(fmt.Sprintf("bad derived types: %s %s", d.typ, base.typ))
    	}
    	fmt.Fprintf(w, "var base %s\n", base.typ[2:])
    	fmt.Fprintf(w, "var derived %s\n", d.typ[2:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // to prevent two such operations from occurring concurrently.
      //
      // Note that different types of linked_ptr objects can coexist in a
      // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
      // linked_ptr<Derived2>).  Therefore we must use a single mutex to
      // protect all linked_ptr objects.  This can create serious
      // contention in production code, but is acceptable in a testing
      // framework.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      // to prevent two such operations from occurring concurrently.
      //
      // Note that different types of linked_ptr objects can coexist in a
      // circle (e.g. linked_ptr<Base>, linked_ptr<Derived1>, and
      // linked_ptr<Derived2>).  Therefore we must use a single mutex to
      // protect all linked_ptr objects.  This can create serious
      // contention in production code, but is acceptable in a testing
      // framework.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/allocators.go

    	var derived ID
    	if unsafe.Sizeof(base)%unsafe.Sizeof(derived) != 0 {
    		panic("bad")
    	}
    	scale := unsafe.Sizeof(base) / unsafe.Sizeof(derived)
    	b := c.allocInt64Slice(int((uintptr(n) + scale - 1) / scale))
    	s := unsafeheader.Slice{
    		Data: unsafe.Pointer(&b[0]),
    		Len:  n,
    		Cap:  cap(b) * int(scale),
    	}
    	return *(*[]ID)(unsafe.Pointer(&s))
    }
    func (c *Cache) freeIDSlice(s []ID) {
    	var base int64
    	var derived ID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult.java

            for (String originatingElement : originatingElements) {
                Set<String> derived = generatedTypesByOrigin.get(originatingElement);
                if (derived == null) {
                    derived = new LinkedHashSet<>();
                    generatedTypesByOrigin.put(originatingElement, derived);
                }
                derived.add(name);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

    };
    
    template <typename Derived>
    class TFRTypeImpl : public Type::TypeBase<Derived, TFRType, TFRTypeStorage> {
     public:
      using Base = Type::TypeBase<Derived, TFRType, TFRTypeStorage>;
      using TFRBase = TFRTypeImpl<Derived>;
      using Base::Base;
    
      static Derived get(ArrayRef<StringAttr> attrs, MLIRContext* context) {
        return Base::get(context, attrs);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/DerivedIvyArtifact.java

        private final IvyArtifact original;
        private final PublicationInternal.DerivedArtifact derived;
    
        public DerivedIvyArtifact(IvyArtifact original, PublicationInternal.DerivedArtifact derived, TaskDependencyFactory taskDependencyFactory) {
            super(taskDependencyFactory);
            this.original = original;
            this.derived = derived;
        }
    
        @Override
        protected String getDefaultName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/PublicationInternal.java

        /**
         * Add a derived artifact for the supplied original artifact.
         *
         * <p>Derived artifacts are not mandatory, i.e. when the supplied file does not exist when this
         * publication is about to be published, they will simply be omitted from the file transfer.
         *
         * <p>Currently, the only known use case for derived artifacts is adding signature files
         * created by the signing plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top