Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 195 for nFront (0.19 sec)

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

    // details.
    bool IsImportLocPattern(FusedLoc loc) {
      ArrayRef<Location> locations = mlir::cast<FusedLoc>(loc).getLocations();
      if (locations.size() < 2 || !isa<NameLoc>(locations.front())) return false;
    
      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) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/build.gradle.kts

        id("gradlebuild.publish-public-libraries")
    }
    
    description = """Persistent caches on disk and cross process locking.
        | Mostly for persisting Maps to the disk.
        | Also contains implementations for in-memory caches in front of the disk cache.
    """.trimMargin()
    
    dependencies {
        api(projects.concurrent)
        api(projects.stdlibJavaExtensions)
        api(projects.serialization)
        api(project(":build-operations"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/compress/bzip2/bzip2.go

    			// This is the EOF symbol. Because it's always at the
    			// end of the move-to-front list, and never gets moved
    			// to the front, it has this unique value.
    			break
    		}
    
    		// Since two metasymbols (RUNA and RUNB) have values 0 and 1,
    		// one would expect |v-2| to be passed to the MTF decoder.
    		// However, the front of the MTF list is never referenced as 0,
    		// it's always referenced with a run-length of 1. Thus 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

              new_while_op.getBody().front().getNumArguments());
          for (auto i : args_to_erase) body_bit_vector.set(i);
          new_while_op.getBody().front().eraseArguments(body_bit_vector);
          llvm::BitVector cond_bit_vector(
              new_while_op.getCond().front().getNumArguments());
          for (auto i : args_to_erase) cond_bit_vector.set(i);
          new_while_op.getCond().front().eraseArguments(cond_bit_vector);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

      ASSERT_TRUE(module_op);
    
      ASSERT_FALSE(module_op->getBodyRegion().empty());
      ASSERT_FALSE(module_op->getBodyRegion().front().empty());
    
      auto constant_op = dyn_cast_or_null<mlir::stablehlo::ConstantOp>(
          module_op->getBodyRegion().front().front());
      ASSERT_THAT(constant_op, NotNull());
    
      EXPECT_TRUE(HasRankOf(constant_op, /*rank=*/4));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

                  device_cluster, &if_op.getThenBranch().front(),
                  {host_if.getThenBranch().front().getTerminator()},
                  core_to_compilation_key, core_to_device_ordinal,
                  /*control_above=*/true, is_map_oc, communication_key_index)))
            return WalkResult::interrupt();
          if (failed(MoveToHostMultiCluster(
                  device_cluster, &if_op.getElseBranch().front(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/views/op_view.cc

    ArgView OpView::OnlyInput() const {
      CHECK_EQ(input_args_.size(), 1);  // Crash OK
      return input_args_.front();
    }
    
    ArgView OpView::OnlyOutput() const {
      CHECK_EQ(output_args_.size(), 1);  // Crash OK
      return output_args_.front();
    }
    
    string OpView::FunctionName() const { return op_.name(); }
    
    string OpView::OpNameString() const { return Quoted(op_.name()); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tpu_partitioned_op_conversion.cc

      }
    
      auto element_type = getElementTypeOrSelf(first_operand_type);
      if (mlir::isa<TF::ResourceType>(element_type)) {
        first_operand_type =
            mlir::cast<TF::ResourceType>(element_type).getSubtypes().front();
      }
    
      auto tensor_type = mlir::dyn_cast_or_null<TensorType>(first_operand_type);
      if (!(tensor_type && tensor_type.hasRank())) {
        return op->emitError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

        // Add terminator of tf_executor::graph
        rewriter.setInsertionPointToEnd(&executor_graph.getBody().front());
        rewriter.create<tf_executor::FetchOp>(loc);
    
        // Add terminator of func
        rewriter.setInsertionPointToEnd(&func.getBody().front());
        rewriter.create<func::ReturnOp>(loc);
    
        rewriter.replaceOp(graph.getOperation(), func.getOperation()->getResults());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

    // CPU.
    LogicalResult IsCpuRead(FuncOp func, ReadVariableOp read, bool& is_cpu_read) {
      if (auto arg = mlir::dyn_cast<BlockArgument>(read->getOperand(0))) {
        if (arg.getOwner() != &(func.front())) {
          is_cpu_read = false;
          return success();
        }
        if (auto attr = func.getArgAttrOfType<StringAttr>(arg.getArgNumber(),
                                                          kFuncDeviceAttr)) {
    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