Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,247 for arguments_ (0.2 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        compile_options.use_tuple_arg = false;
        compile_options.always_return_tuple = true;
      }
    
      return compile_options;
    }
    
    // Gets `variables` from `ctx`, locks them and builds XlaCompiler::Arguments
    // using them. Stores the arguments in `args`. `variables` and `args` passed in
    // will be cleared before populating them.
    Status GetAndLockVariablesAndBuildXlaCompilerArguments(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/get_compiler_ir.cc

      std::vector<XlaCompiler::Argument> args;
      args.reserve(input_arg_size);
    
      for (auto& arg_info : flat_arg_shape_and_dtype) {
        XlaCompiler::Argument arg;
        arg.kind = XlaCompiler::Argument::kParameter;
        arg.type = arg_info.dtype;
        arg.shape = arg_info.shape;
        args.push_back(arg);
      }
    
      // Build Xla Compiler Arguments from concrete_fn.captured_inputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

        def "can configure searchUpwards via build arguments"() {
            given:
            file('build.gradle') << "assert !gradle.startParameter.searchUpwards"
    
            when:
            withConnection {
                it.newBuild().withArguments('-u').run()
            }
    
            then:
            noExceptionThrown()
        }
    
        def "can overwrite task names via build arguments"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null, null as File)", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null, null)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[], null, null)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskFailureIntegrationTest.groovy

            failure.assertHasCause("Could not create task of type 'CustomTask'.")
            failure.assertHasCause("Unable to determine constructor argument #2: missing parameter of type int, or no service of type int")
        }
    
        def "fails to create custom task if all constructor arguments missing"() {
            given:
            buildFile << CUSTOM_TASK_WITH_CONSTRUCTOR_ARGS
            buildFile << "tasks.register('myTask', CustomTask)"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_launch_util.h

                                absl::Span<VariableInfo const> variable_args,
                                Device* device);
    
      // Add all inputs within `ctx` as XLA arguments (returned by arguments()).
      // `variables` is a map from TensorFlow argument number to resource variable.
      //
      // Assumes that the first `missing_ctx_input_prefix` inputs to the kernel are
      // missing and adjusts input indices accordingly.  All elements in kernel's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

          work_list.push_back(use.getOwner());
        }
      }
    
      for (auto* op : erase_list) {
        op->dropAllUses();
        op->erase();
      }
    }
    
    // Updates terminator op arguments of 'func' after removing arguments
    // specified in 'arguments_to_erase'.
    template <typename T>
    void UpdateTerminatorArguments(T& func,
                                   const ArrayRef<unsigned> arguments_to_erase,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVD 0(R7), R3
    
    	CMP  R8, $0
    	BEQ  docall
    	MOVD $2176+16, R6 // starting LE stack address-8 to store 4th argument
    
    repeat:
    	ADD  $8, R7
    	MOVD 0(R7), R0      // advance arg pointer by 8 byte
    	ADD  $8, R6         // advance LE argument address by 8 byte
    	MOVD R0, (R4)(R6*1) // copy argument from go-slice to le-frame
    	SUB  $1, R8
    	CMP  R8, $0
    	BNE  repeat
    
    docall:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/middleware.md

    from unicorn import UnicornMiddleware
    
    app = FastAPI()
    
    app.add_middleware(UnicornMiddleware, some_config="rainbow")
    ```
    
    `app.add_middleware()` empfängt eine Middleware-Klasse als erstes Argument und dann alle weiteren Argumente, die an die Middleware übergeben werden sollen.
    
    ## Integrierte Middleware
    
    **FastAPI** enthält mehrere Middlewares für gängige Anwendungsfälle. Wir werden als Nächstes sehen, wie man sie verwendet.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1StaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromObjectList(), "execute(command)", "", ""],
                // Spread calls
                [fromString(), "execute(*[command])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "execute(command as String)", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top