Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for some_name (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            String someName = "someName"
            String someVersion = "someVersion"
            String someConfiguration = "someConfiguration"
            DefaultResolvedDependency resolvedDependency = new DefaultResolvedDependency(someConfiguration, newId(someGroup, someName, someVersion), buildOperationProcessor)
    
            then:
            resolvedDependency.name == someGroup + ":" + someName + ":" + someVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. cluster/log-dump/log-dump.sh

        if log-dump-ssh "${node_name}" "command -v journalctl" &> /dev/null; then
            if [[ "${on_master}" == "true" ]]; then
              log-dump-ssh "${node_name}" "sudo journalctl --output=short-precise -u kube-master-installation.service" > "${dir}/kube-master-installation.log" || true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/cc/quantization_unit_loc.cc

    constexpr std::string_view kQuantizationUnitSuffix = ")";
    
    // Concatenates node name and func name with a "@" separator.
    std::string ConcatNodeAndFuncName(std::string_view node_name,
                                      std::string_view func_name) {
      return absl::StrCat(node_name, "@", func_name);
    }
    
    // Generate a string to represent the QuantizationUnit.
    std::string GenerateQuantizationUnitString(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. tensorflow/c/while_loop_test.cc

      // Check for a few expected nodes
      const char* node_name = "test_loop/cond/scalar";
      EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
      node_name = "test_loop/body/add";
      EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
      node_name = "test_loop/body/inner_loop/body/one";
      EXPECT_TRUE(TF_GraphOperationByName(graph_, node_name) != nullptr);
      node_name = "test_loop/body/inner_loop/cond/less_than";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      }
    
      // Builds TF operation and sets all the attributes.
      std::string node_name = "unnamed";
      if (const StringAttr attr = inst->getAttrOfType<StringAttr>("name")) {
        node_name = std::string(attr.getValue());
      }
      absl::StatusOr<std::unique_ptr<tensorflow::NodeDef>> node_def =
          tensorflow::ConvertTFDialectOpToNodeDef(
              inst, node_name.c_str(), /*ignore_unregistered_attrs=*/true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

          return StringRef();
        }
      }
    
      StringRef result;
      for (Attribute class_attr : classes_attr) {
        StringRef node_name = mlir::cast<StringAttr>(class_attr).getValue();
        if (!node_name.starts_with(kLocationPrefix)) {
          continue;
        }
        if (!result.empty()) {
          // Invalid case since there are multiple loc:@ attributes.
          op->emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      llvm::SmallVector<Value> returning_values(output_count, Value());
      for (const auto& node_name : node_to_output_map.keys()) {
        auto node_output_tensors = node_to_output_map[node_name];
    
        NameLoc new_loc = NameLoc::get(builder.getStringAttr(node_name));
        int32_t max_tensor_index = 0;
        absl::c_for_each(node_output_tensors,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

          }
    
          op.setAttr(tensorflow::kXlaTokenInputNodesAttrName,
                     ArrayAttr::get(ctx, {token}));
    
          auto node_name = StringAttr::get(ctx, name_mapper.GetUniqueName(&op));
          op.setAttr(tensorflow::kXlaOriginalOutsideCompilationNodeName, node_name);
          token = node_name;
        }
      }
      return success();
    }
    
    void PrepareTpuComputationForTfExportPass::runOnOperation() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

      }
    
     private:
      void runOnOperation() override;
    };
    
    // TF graph nodes are imported with one of following location patterns:
    //   FusedLoc[NameLoc(op_type:), ..., NameLoc(node_name@func_name)] or
    //   FusedLoc[NameLoc(op_type:), ..., CallSiteLoc(node_name@func_name)]. See
    // tensorflow/compiler/mlir/tensorflow/translate/import_model.cc for more
    // details.
    bool IsImportLocPattern(FusedLoc loc) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top