Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 139 for call_op (0.23 sec)

  1. tests/integration/security/egress_sidecar_tls_origination_test.go

    					}
    					newTLSSidecarDestinationRule(t, apps.External.All, "MUTUAL", tc.drSelector, tc.credentialToUse,
    						tc.from.Config().Namespace)
    					callOpt := newTLSSidecarCallOpts(apps.External.All[0], host, tc.expectedResponse)
    					tc.from[0].CallOrFail(t, callOpt)
    				})
    			}
    		})
    }
    
    // Authorize only specific sidecars in the namespace with secret listing permissions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/transforms/fold_constants_to_subgraph.cc

          if (!fold_all_constants_flag_) {
            if (!IsConstOrQConstInt(op)) return;
          }
    
          for (auto consumer : op->getResult(0).getUsers()) {
            auto consumer_call = llvm::dyn_cast_or_null<func::CallOp>(consumer);
    
            if (!consumer_call) continue;
    
            auto function_name = consumer_call.getCallee();
    
            // Locate the argument position of the use.
            int argument_index = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

    John Howard <******@****.***> 1704863403 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

          // values generated elsewhere.
          return all_operations.contains(o.getOwner());
        });
      }
    
      // Insert function call.
      builder.setInsertionPoint(ops[0]);
      auto call = builder.create<mlir::func::CallOp>(
          ops[0]->getLoc(), func.getFunctionType().getResults(), func.getSymName(),
          inputs);
      for (const auto& v : llvm::enumerate(outputs)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

        auto caster = make_caster<absl::string_view>();
        // Make sure the user passed a valid python string.
        if (!caster.load(src, convert)) return false;
    
        const absl::string_view serialized_proto =
            cast_op<absl::string_view>(std::move(caster));
    
        // NOLINTNEXTLINE: Explicit std::string conversion required for OSS.
        return value.ParseFromString(std::string(serialized_proto));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

      // begin[i].
      //
      // If slice_size[i] < -1 then executing the slice will throw an error, and we
      // don't do anything here.  We've already filtered these cases out in
      // IsRewritableSlice.
    
      if (absl::c_all_of(slice_inputs.size_as_vector,
                         [](int64_t i) { return i >= 0; })) {
        *size = slice_inputs.size;
        return absl::OkStatus();
      }
    
      Output input_shape =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/device_util.cc

        storage_.resize(other.storage_.size(), 0);
      }
    
      for (int i = 0, end = other.storage_.size(); i < end; i++) {
        storage_[i] |= other.storage_[i];
      }
    }
    
    bool DeviceSet::IsEmpty() const {
      return absl::c_all_of(storage_, [&](uint64 val) { return val == 0; });
    }
    
    absl::StatusOr<DeviceId> DeviceInfoCache::GetIdFor(absl::string_view name) {
      TF_RET_CHECK(!name.empty());
    
      auto it = name_to_id_.find(name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

      }
    
      for (auto pair : llvm::zip(new_op.getRegions(), case_op.getRegions())) {
        std::get<0>(pair)->takeBody(*std::get<1>(pair));
      }
      case_op.replaceAllUsesWith(
          new_op.getResults().take_front(case_op.getNumResults()));
      case_op.erase();
      return success();
    }
    
    template <typename CallOp>
    LogicalResult HandlePartitionedCallOp(
        CallOp call, func::FuncOp callee, ModuleOp module,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

      StringRef op_type_with_suffix =
          mlir::cast<NameLoc>(locations.front()).getName().strref();
      if (!op_type_with_suffix.ends_with(":")) return false;
    
      return absl::c_all_of(locations, [](Location loc) {
        return isa<NameLoc>(loc) ||
               (isa<CallSiteLoc>(loc) &&
                isa<NameLoc>(mlir::cast<CallSiteLoc>(loc).getCallee()));
      });
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/hoist_loop_invariant.cc

      });
    
      // Get read only variables by checking if their users only have read effect.
      llvm::DenseSet<ResourceHandle> read_only_vars;
      for (const auto &[resource_handle, var_handle_ops] : resources) {
        if (std::all_of(var_handle_ops.begin(), var_handle_ops.end(),
                        [](Operation *op) {
                          for (auto *user : op->getUsers()) {
                            if (!OnlyHasReadEffect(user)) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top