Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for GetVector (0.54 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

    template <typename T>
    inline std::vector<T> GetVector(DenseElementsAttr elements);
    
    // TODO(zichuanwei@): for each type, we need to make sure the element type
    // matches the expected type otherwise an error should be thrown, but for now
    // we're just returning empty vector
    template <>
    inline std::vector<bool> GetVector(DenseElementsAttr elements) {
      auto type = elements.getType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

              << " TPUReplicatedInput/Output pairs";
      return LogicalResult::success();
    }
    
    LogicalResult FindCoreTPUOps(
        llvm::SetVector<Operation*>& core_tpu_ops,
        const llvm::SetVector<Operation*>& forward_pass_ops,
        const llvm::SetVector<Operation*>& backward_pass_ops,
        const llvm::SetVector<Operation*>& merged_set,
        func::FuncOp loop_body_func) {
      // Find all of the Ops that are part of the forward/backward pass but aren't
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

      // Return the current live values.
      const SetVector<Value>& get() const { return liveouts_; }
    
      // Return the previous live values.
      const SetVector<Value>& get_previous() const { return prev_liveouts_; }
    
     private:
      // Use SerVector to ensure deterministic traversal order.
      SetVector<Value> liveouts_;
      SetVector<Value> prev_liveouts_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

              func_impls,
          llvm::SetVector<Operation*>* unprocessed_subgraphs,
          SmallVector<func::CallOp, 4>* output_subgraphs);
    
      void ProcessSubgraph(func::CallOp current_graph,
                           llvm::SetVector<Operation*>* unprocessed_subgraphs);
    
      bool PickSubgraphs(
          llvm::SetVector<Operation*>* all_subgraphs,
          ArrayRef<func::CallOp> output_subgraphs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <string>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/CommandLine.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. build/dependencies.yaml

      - name: "node-problem-detector"
        version: 0.8.19
        refPaths:
        - path: test/e2e_node/image_list.go
          match: const defaultImage
        - path: test/kubemark/resources/hollow-node_template.yaml
          match: registry.k8s.io/node-problem-detector/node-problem-detector
        - path: cluster/addons/node-problem-detector/npd.yaml
          match: registry.k8s.io/node-problem-detector/node-problem-detector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            Function<String, String> getVendor = { "" }
        ) {
            def detector = newJvmMetadataDetector(getVersion, getVendor)
            def registry = createInstallationRegistry(installations, detector)
            def currentJvmPath = currentJvm?.location ?: Jvm.current().javaHome
    
            def queryService = createQueryService(registry, detector, createProvisioningService(), currentJvmPath)
            return queryService
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            Function<String, String> getVendor = { "" }
        ) {
            def detector = createJvmMetadataDetector(getVersion, getVendor)
            def currentJavaHomePath = currentJavaHome?.location ?: Jvm.current().javaHome
    
            return new DaemonJavaToolchainQueryService(createInstallationRegistry(installations, detector), currentJavaHomePath)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            given:
            def execHandleFactory = createExecHandleFactory(currentGradle())
    
            when:
            def detector = createDefaultJvmMetadataDetector(execHandleFactory)
            def javaHome = new File(temporaryFolder, "localGradle").tap { mkdirs() }
            def metadata = detector.getMetadata(testLocation(javaHome))
    
            then:
            metadata
            tmpDir.assertIsEmptyDir()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

            FileLockManager lockManager,
            JvmMetadataDetector detector,
            GradleUserHomeTemporaryFileProvider temporaryFileProvider
        ) {
            this.operations = operations;
            this.jdkDirectory = new File(homeDirProvider.getGradleUserHomeDirectory(), "jdks");
            this.lockManager = lockManager;
            this.detector = detector;
            this.temporaryFileProvider = temporaryFileProvider;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top