Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for getVars (0.12 sec)

  1. pkg/registry/core/serviceaccount/storage/storage_test.go

    	return f.staticToken, nil
    }
    
    var _ token.TokenGenerator = fakeTokenGenerator{}
    
    // Currently this getter only panics as the only test case doesn't actually need the getters to function.
    // When more test cases are added, this getter will need extending/replacing to have a real test implementation.
    type panicGetter struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

                                    PatternRewriter& rewriter) const override {
        auto preceding_qcast =
            q_op.getArg().getDefiningOp<quantfork::QuantizeCastOp>();
        if (!preceding_qcast) return failure();
    
        auto new_qcast = rewriter.create<quantfork::QuantizeCastOp>(
            q_op.getLoc(), q_op.getType(), preceding_qcast.getArg());
        new_qcast->setAttr(kVolatileOpAttrName, rewriter.getUnitAttr());
        q_op->replaceAllUsesWith(new_qcast);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    contextualLabel == 'Type \'MyTask\' property \'badTime\' is private and annotated with @Input'
                    details == 'Annotations on private getters are ignored'
                    solutions == [
                        'Make the getter public',
                        'Annotate the public version of the getter',
                    ]
                    additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      // Finds the mapping from a replicate argument to an execute operand.
      llvm::SmallDenseMap<int64_t, int64_t, 8> replicate_arg_to_execute_arg;
      for (auto index_and_arg : llvm::enumerate(execute.getArgs())) {
        auto arg = SkipIdentity(index_and_arg.value(), /*allow_other_use=*/false);
        if (!arg.hasOneUse() ||
            !mlir::isa<TF::ResourceType>(getElementTypeOrSelf(arg.getType()))) {
          continue;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

          tensorflow::XlaCallModuleLoader::Create(
              context, static_cast<int>(op.getVersion()), op.getModule().str(),
              std::move(disabled_checks), std::move(platforms),
              /*num_invocation_args=*/op.getArgs().size(),
              op.getHasTokenInputOutput()));
      return std::move(*loader).module();
    }
    
    // Renames functions in the stablehlo module to avoid naming conflicts with
    // existing functions in the tf module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

        ModuleOp module = op->getParentOfType<ModuleOp>();
        SymbolTable symbol_table(module);
        func::FuncOp float_func =
            dyn_cast<func::FuncOp>(symbol_table.lookup(function_name));
        OperandRange func_args = op.getArgs();
        func::FuncOp new_float_func = float_func.clone();
    
        SmallVector<Value> new_float_func_args{func_args.begin(), func_args.end()};
        new_float_func_args[weight_operand_idx] = reshape_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize_drq.cc

    void PrepareQuantizeDRQPass::removeAllStatsOp(func::FuncOp func) {
      func.walk([&](quantfork::StatisticsOp stats_op) {
        stats_op.replaceAllUsesWith(stats_op.getArg());
        stats_op.erase();
      });
    }
    
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.inc"
    
    void PrepareQuantizeDRQPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

            StringBuilder builder = new StringBuilder();
            ArgumentAppender argument = new ArgumentAppender(builder, task.getWorkingDir());
            builder.append("-javaagent:");
            builder.append(agent.getJar().getAbsolutePath());
            builder.append('=');
            argument.append("destfile", getDestinationFile());
            argument.append("append", true);
            argument.append("includes", getIncludes());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/syscall/exec_linux_test.go

    	effective   uint32
    	permitted   uint32
    	inheritable uint32
    }
    
    const CAP_SYS_TIME = 25
    const CAP_SYSLOG = 34
    
    type caps struct {
    	hdr  capHeader
    	data [2]capData
    }
    
    func getCaps() (caps, error) {
    	var c caps
    
    	// Get capability version
    	if _, _, errno := syscall.Syscall(syscall.SYS_CAPGET, uintptr(unsafe.Pointer(&c.hdr)), uintptr(unsafe.Pointer(nil)), 0); errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tpu_dynamic_layout_pass.cc

        auto execute =
            llvm::cast<TF::TPUExecuteOp>(execute_launch.GetBody().front());
        const auto& input_mapping = std::get<1>(execute_and_input_mapping);
    
        for (const auto& input_and_idx : llvm::enumerate(execute.getArgs())) {
          Value input = input_and_idx.value();
          const int64_t execute_arg_index = input_and_idx.index();
          if (auto block_arg = mlir::dyn_cast<BlockArgument>(input)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top