Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 568 for Advance (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/device_attribute_to_launch.cc

      getOperation().walk([&](Operation* op) {
        if (op->getDialect() != tf_dialect) return WalkResult::advance();
        if (auto device = op->getAttrOfType<StringAttr>(kDeviceAttr)) {
          if (!device.getValue().empty()) WrapOpInLaunch(op, device.getValue());
        }
        return WalkResult::advance();
      });
    }
    
    }  // anonymous namespace
    
    std::unique_ptr<OperationPass<func::FuncOp>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 00:59:46 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	out := fields[:0]
    	for advance, i := 0, 0; i < len(fields); i += advance {
    		// One iteration per name.
    		// Find the sequence of fields with the name of this first field.
    		fi := fields[i]
    		name := fi.name
    		for advance = 1; i+advance < len(fields); advance++ {
    			fj := fields[i+advance]
    			if fj.name != name {
    				break
    			}
    		}
    		if advance == 1 { // Only one field with this name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass.cc

      if (cluster_op == nullptr) return false;
    
      auto walk_result = cluster_op->walk([&](Operation* op) {
        if (IsLaunchOp(*op)) return WalkResult::interrupt();
    
        return WalkResult::advance();
      });
    
      return walk_result.wasInterrupted();
    }
    
    bool HasXlaOutsideCompilationMarker(Operation& op) {
      return op.getAttrOfType<StringAttr>(kXlaOutsideCompilationAttr) != nullptr;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 22 19:52:08 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tpu_annotate_dynamic_shape_inputs.cc

        // Skip non-tpu device cluster_func.
        auto cluster_id =
            cluster_func_op->getAttrOfType<StringAttr>(TF::kReplicationInfoAttr);
        if (!cluster_id) return WalkResult::advance();
    
        llvm::SmallVector<int, 4> dynamic_shape_arg_index;
    
        // Traverse the operands of the cluster func op and find which operand
        // is returned by TPUAnnotateTensorsWithDynamicShapeOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass.cc

        auto abstractOp = op->getRegisteredInfo();
        if (!abstractOp) return WalkResult::advance();
    
        if (mlir::mhlo::IsDynamicPadderOp(abstractOp->getTypeID())) {
          has_dynamic_op = true;
          dynamism_op_counter->GetCell(op->getName().getStringRef().str())
              ->IncrementBy(1);
        }
    
        return WalkResult::advance();
      });
    
      if (has_dynamic_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 08:55:35 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/dcerpc/DcerpcBind.java

            buf.dec_ndr_long();  /* assoc. group */
            int n = buf.dec_ndr_short(); /* secondary addr len */
            buf.advance(n); /* secondary addr */
            buf.align(4);
            buf.dec_ndr_small(); /* num results */
            buf.align(4);
            result = buf.dec_ndr_short();
            buf.dec_ndr_short();
            buf.advance(20);     /* transfer syntax / version */
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/DcerpcBind.java

            int n = buf.dec_ndr_short(); /* secondary addr len */
            buf.advance(n); /* secondary addr */
            buf.align(4);
            buf.dec_ndr_small(); /* num results */
            buf.align(4);
            this.result = buf.dec_ndr_short();
            buf.dec_ndr_short();
            buf.advance(20); /* transfer syntax / version */
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512block_ppc64x.s

    	SHA512ROUND0(V0, V1, V2, V3, V4, V5, V6, V7, V8, R_x020)
    	LXVD2X	(INP)(R_x000), VS42	// load v10 (=vs42) in advance
    	VSLDOI	$8, V8, V8, V9
    	SHA512ROUND0(V7, V0, V1, V2, V3, V4, V5, V6, V9, R_x030)
    	VPERMLE(V10,V10,LEMASK,V10)
    	SHA512ROUND0(V6, V7, V0, V1, V2, V3, V4, V5, V10, R_x040)
    	LXVD2X	(INP)(R_x010), VS44	// load v12 (=vs44) in advance
    	VSLDOI	$8, V10, V10, V11
    	SHA512ROUND0(V5, V6, V7, V0, V1, V2, V3, V4, V11, R_x050)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

          return WalkResult::advance();
        Operation* compile_launch_op = compile_op->getParentOp();
    
        if (compile_launch_op->getBlock() == preprocess_or_launch->getBlock() &&
            preprocess_or_launch->isBeforeInBlock(compile_launch_op)) {
          tpu_compile_successor = compile_op;
          return WalkResult::interrupt();
        }
        return WalkResult::advance();
      });
      return tpu_compile_successor;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/constant_op_device_assignment.cc

      module.walk([&](TF::ConstOp op) {
        // Keep the ConstOp if the op already have the device attribute.
        if (StringAttr device_attr = op->getAttrOfType<StringAttr>(kDeviceAttr)) {
          return WalkResult::advance();
        }
        OpBuilder builder(op);
        llvm::StringMap<mlir::Operation *> cloned_op_by_device;
        bool all_uses_replaced = true;
    
        for (mlir::OpOperand &use :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top