Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 468 for movbe (0.3 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

          core_to_host_insertion_point[0], core_to_compilation_key[0],
          core_to_device_ordinal.empty() ? nullptr : core_to_device_ordinal[0],
          device_type_attr, builder, op, std::move(args_communication_key),
          std::move(retvals_communication_key), host0_ops);
    
      if (external_operands.empty()) {
        recv_at_host->erase();
      } else {
        ReplaceExternalOperandUsage(
            external_operands, recv_at_host,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/force_xla_constants_on_host_pass_test.cc

      options.session_options = &session_options;
      options.flib_def = flib_def;
      TF_RETURN_IF_ERROR(s.ToGraph(graph.get()));
      ForceXlaConstantsOnHostPass rewriter;
      TF_RETURN_IF_ERROR(rewriter.Run(options));
      *result = std::move(graph);
      return absl::OkStatus();
    }
    
    TEST(ForceXlaConstantsOnHostPassTest, Simple) {
      GraphDefBuilder b(GraphDefBuilder::kFailImmediately);
      Scope root = Scope::NewRootScope().ExitOnError();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. ci/official/containers/linux_arm64/build.sh

    set -exo pipefail
    
    function is_continuous_or_release() {
      [[ "$KOKORO_JOB_TYPE" == "CONTINUOUS_INTEGRATION" ]] || [[ "$KOKORO_JOB_TYPE" == "RELEASE" ]]
    }
    
    # Move into the directory of the script
    cd "$(dirname "$0")"
    
    if is_continuous_or_release || [[ -z "$KOKORO_BUILD_ID" ]]; then
      # A continuous job is the only one to publish to latest
      TAG="latest-multi-python"
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 22:33:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/cpu.go

    	AFADDS
    	AFSUBS
    	AFMULS
    	AFDIVS
    	AFMINS
    	AFMAXS
    	AFSQRTS
    	AFMADDS
    	AFMSUBS
    	AFNMADDS
    	AFNMSUBS
    
    	// 11.7: Single-Precision Floating-Point Conversion and Move Instructions
    	AFCVTWS
    	AFCVTLS
    	AFCVTSW
    	AFCVTSL
    	AFCVTWUS
    	AFCVTLUS
    	AFCVTSWU
    	AFCVTSLU
    	AFSGNJS
    	AFSGNJNS
    	AFSGNJXS
    	AFMVXS
    	AFMVSX
    	AFMVXW
    	AFMVWX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/alg.go

    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    	ACPLX128
    	ASPECIAL // Type needs special comparison/hashing functions.
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

          llvm::errs() << "Can't get llvm::MemoryBuffer\n";
          return "";
        }
      }
    
      mlir::MLIRContext context;
      context.printOpOnDiagnostic(true);
      llvm::SourceMgr sourceMgr;
      sourceMgr.AddNewSourceBuffer(std::move(input), llvm::SMLoc());
    
      mlir::OwningOpRef<mlir::ModuleOp> module =
          FlatBufferFileToMlirTranslation(&sourceMgr, &context);
      if (!module || failed(verify(*module))) return "";
    
      std::string mlir_output;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/quantize.cc

      } else {
        patterns.add<TFLFullQuantization, TFLFullQuantizationReverse>(ctx,
                                                                      quant_params);
      }
      (void)applyPatternsAndFoldGreedily(func, std::move(patterns));
    
      // Constant quantization is a lossy transformation, so they are applied only
      // after all the other patterns have been aplied.
      RewritePatternSet patterns_2(&getContext());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    Value CloneGraphOps(GraphOp src_graph_op, GraphOp dst_graph_op,
                        IRMapping& mapper) {
      Block& main_body = dst_graph_op.GetBody();
    
      // Take the reference of the main graph's FetchOp to later move to the end.
      FetchOp main_fetch_op = dst_graph_op.GetFetch();
    
      Block& save_func_body = src_graph_op.GetBody();
      for (Operation& op : save_func_body.without_terminator()) {
        main_body.push_back(op.clone(mapper));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/runtime/asm_loong64.s

    	/* copy arguments to stack */		\
    	MOVV	arg+16(FP), R4;			\
    	MOVWU	argsize+24(FP), R5;			\
    	MOVV	R3, R12;				\
    	ADDV	$8, R12;			\
    	ADDV	R12, R5;				\
    	BEQ	R12, R5, 6(PC);				\
    	MOVBU	(R4), R6;			\
    	ADDV	$1, R4;			\
    	MOVBU	R6, (R12);			\
    	ADDV	$1, R12;			\
    	JMP	-5(PC);				\
    	/* set up argument registers */		\
    	MOVV	regArgs+40(FP), R25;		\
    	JAL	·unspillArgs(SB);		\
    	/* call function */			\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. src/runtime/asm_mipsx.s

    	/* copy arguments to stack */		\
    	MOVW	stackArgs+8(FP), R1;	\
    	MOVW	stackArgsSize+12(FP), R2;	\
    	MOVW	R29, R3;	\
    	ADDU	$4, R3;	\
    	ADDU	R3, R2;	\
    	BEQ	R3, R2, 6(PC);	\
    	MOVBU	(R1), R4;	\
    	ADDU	$1, R1;	\
    	MOVBU	R4, (R3);	\
    	ADDU	$1, R3;	\
    	JMP	-5(PC);	\
    	/* call function */			\
    	MOVW	f+4(FP), REGCTXT;	\
    	MOVW	(REGCTXT), R4;	\
    	PCDATA	$PCDATA_StackMapIndex, $0;	\
    	JAL	(R4);	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top