Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for getIpr (0.27 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

                                            enable_per_channel_quantization_);
      FrozenRewritePatternSet frozen_patterns(std::move(patterns));
    
      for (auto func : module_op.getOps<func::FuncOp>()) {
        removeAllStatsOp(func);
        if (failed(applyPatternsAndFoldGreedily(func, frozen_patterns))) {
          func.emitError() << "quant-prepare-quantize-drq failed.";
          signalPassFailure();
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util_test.cc

          new ProcessFunctionLibraryRuntime(
              nullptr, Env::Default(), /*config=*/nullptr, TF_GRAPH_DEF_VERSION,
              flib_def, OptimizerOptions{}));
      FunctionLibraryRuntime* lib_runtime =
          pflr->GetFLR(ProcessFunctionLibraryRuntime::kDefaultFLRDevice);
    
      TF_ASSIGN_OR_RETURN(absl::flat_hash_set<Node*> nodes_related_to_ref_vars,
                          GetNodesRelatedToRefVariables(*graph, lib_runtime));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

            }
        }
    
        /** */
        public static class Hoge {
    
            /** */
            public List<String> foo;
    
            /**
             * @return Set
             */
            public Set<Integer> getBar() {
                return null;
            }
    
            /**
             * @param date
             */
            public void setBaz(final Map<String, Date> date) {
            }
    
            /** */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

        ArrayRef<int64_t> int64_array);
    
    // Returns the first operation with the given type in the function.
    template <typename OpType>
    OpType FindOperationOfType(func::FuncOp function) {
      for (auto op : function.getBody().getOps<OpType>()) {
        return op;
      }
      return nullptr;
    }
    
    // Returns the first user of the given operation, optionally of the given
    // type if provided. If there is no user or user of type, return nullptr.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

                execResult.getOutput(),
                execResult.getTasks()
            );
        }
    
        private File createTestKitDir(TestKitDirProvider testKitDirProvider) {
            File dir = testKitDirProvider.getDir();
            if (dir.isDirectory()) {
                if (!dir.canWrite()) {
                    throw new InvalidRunnerConfigurationException("Unable to write to test kit directory: " + dir.getAbsolutePath());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

        }
    
        private static File toDirectory(PropertyValidationContext context, Object value) {
            if (value instanceof ConfigurableFileTree) {
                return ((ConfigurableFileTree) value).getDir();
            }
            return toFile(context, value);
        }
    
        private static File toFile(PropertyValidationContext context, Object value) {
            return context.getFileResolver().resolve(value);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. pkg/dns/proto/nds.pb.go

    // Deprecated: Use NameTable_NameInfo.ProtoReflect.Descriptor instead.
    func (*NameTable_NameInfo) Descriptor() ([]byte, []int) {
    	return file_dns_proto_nds_proto_rawDescGZIP(), []int{0, 0}
    }
    
    func (x *NameTable_NameInfo) GetIps() []string {
    	if x != nil {
    		return x.Ips
    	}
    	return nil
    }
    
    func (x *NameTable_NameInfo) GetRegistry() string {
    	if x != nil {
    		return x.Registry
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/transforms/raise_target_subgraphs.cc

        }
      }
    }
    
    void RaiseTargetSubgraphsPass::runOnOperation() {
      ModuleOp module = getOperation();
      auto& side_effect_analysis = getAnalysis<TF::SideEffectAnalysis>();
      SmallVector<func::FuncOp> funcs(module.getOps<func::FuncOp>());
      int func_count = -1;
      for (auto func : funcs) {
        const auto& info = side_effect_analysis.GetAnalysisForFunc(func);
        for (auto& block : func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      if (!module_or.status().ok()) {
        LOG(ERROR) << "Graph import failed: " << module_or.status();
        return module_or.status();
      }
      auto& module = module_or.value();
      std::srand(0);
      for (auto fn : module->getOps<mlir::func::FuncOp>()) {
        for (auto& bb : fn) {
          for (auto& inst : bb) {
            auto attr_id = mlir::StringAttr::get(context, "value");
            if (auto attr = inst.getAttrOfType<mlir::ElementsAttr>(attr_id)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    void SetAllVarIsInitializedToTrue(Block* block) {
      auto builder = OpBuilder::atBlockBegin(block);
      TF::ConstOp const_true = nullptr;
      for (auto op :
           llvm::make_early_inc_range(block->getOps<TF::VarIsInitializedOp>())) {
        builder.setInsertionPoint(op);
        if (!const_true)
          const_true = builder.create<TF::ConstOp>(
              op.getLoc(),
              DenseIntElementsAttr::get(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top