Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for s_param (0.2 sec)

  1. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

    }
    
    template <typename T>
    std::vector<T> BuildSparsityParameterAttribute(
        const std::vector<int>& block_size, const T* dense_buffer, Operation* inst,
        OpBuilder* builder, SparsityParameterAttr* s_param) {
      ElementsAttr attr;
      ShapedType type;
      if (auto cst = dyn_cast<ConstOp>(inst)) {
        attr = cst.getValue();
        type = mlir::cast<ShapedType>(cst.getType());
      } else if (auto cst = dyn_cast<QConstOp>(inst)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants_offset.mlir

      // CHECK-LABEL: @sparse_f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/constants.mlir

      // CHECK-LABEL: @sparse_f32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        return builder
            .create<tfl::SparseQConstOp>(loc, mlir::TypeAttr::get(shaped_type),
                                         dummy_value, s_param, compressed_data)
            .getOperation();
      }
      return builder
          .create<tfl::SparseConstOp>(loc, dummy_value, s_param, compressed_data)
          .getOperation();
    }
    
    StatusOr<Operation*> BuildConstOp(const tflite::TensorT& tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      }];
    
      let arguments = (ins ElementsAttr:$value,
                       SparsityParameterAttr:$s_param,
                       ElementsAttr:$compressed_data);
    
      let results = (outs AnyTensor:$output);
    
      let builders = [
        OpBuilder<(ins "TypedAttr":$value, "SparsityParameterAttr":$s_param,
          "Attribute":$compressed_data),
        [{
          $_state.addTypes(value.getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/useSite/onParam.kt

    Ilya Kirillov <******@****.***> 1637333053 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:46:58 UTC 2021
    - 112 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/useSite/onParam.txt

    Ilya Kirillov <******@****.***> 1637753883 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 02 19:09:16 UTC 2021
    - 109 bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

     public:
      typedef typename TestClass::ParamType ParamType;
      explicit ParameterizedTestFactory(ParamType parameter) :
          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

     public:
      typedef typename TestClass::ParamType ParamType;
      explicit ParameterizedTestFactory(ParamType parameter) :
          parameter_(parameter) {}
      virtual Test* CreateTest() {
        TestClass::SetParam(&parameter_);
        return new TestClass();
      }
    
     private:
      const ParamType parameter_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(ParameterizedTestFactory);
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            function: KFunction<*>,
            fnParam: KParameter,
            returnClass: KClass<*>,
            functionSemantics: FunctionSemantics,
            preIndex: DataSchemaBuilder.PreIndex
        ): DataParameter {
            val paramType = fnParam.type
            checkInScope(paramType, preIndex)
            val paramSemantics = getParameterSemantics(functionSemantics, function, fnParam, returnClass, preIndex)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top